You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I accidentally configured backups to a folder which was a SMB mount on my linyux box. And the backups ran, but of course at the end of the script it failed due to no symlink support:
[/home/sia/test](ln: failed to create symbolic link 'backups/last/sia-latest.sql.gz': Operation not supported)
It would be better if either
Test a symlink and fail fast early with an error if filesystem not supported
or skip making symlinks and print a warning
or use hard-link for the "-latest" links
The text was updated successfully, but these errors were encountered:
I see that it is documented. But you also see in Discussions section that people still accidentally run the script on other file systems. So making the script complain is a better user experience than having to guess. And falling back to not creating soft-links to "latest" or using hard-links for "latest" is also a better user experience than no support at all.
I accidentally configured backups to a folder which was a SMB mount on my linyux box. And the backups ran, but of course at the end of the script it failed due to no symlink support:
It would be better if either
The text was updated successfully, but these errors were encountered: