Hello, looking for some assistance - running on Ubuntu Server (fully patched) 22.04 with Duplicati 2.1.0.2_beta_2024-11-29.
Backups were running ok before upgrading to the latest Duplicati (though had to restore the database as the upgrade wiped it).
One of my backup jobs runs a pre-backup script (stored in root called mountsyn.sh), which mounts an NFS target on my Synology NAS:
echo "$(date) Starting script, about to mount synology" > $logfile
sudo mount -t nfs -o mountvers=3 192.168.1.xxx:/volume1/ServerBackups /synology
echo "$(date) returned from mounting synology call" >> $logfile
This is where the backup files are stored. Ever since the upgrade Iâm now getting this error:
â* 2025-01-05 11:40:29 +00 - [Warning-Duplicati.Library.Modules.Builtin.RunScript-ScriptExecuteError]: Error while executing script â./mountsyn.shâ: An error occurred trying to start process â./mountsyn.shâ with working directory â/usr/lib/duplicatiâ. No such file or directory Win32Exception: An error occurred trying to start process â./mountsyn.shâ with working directory â/usr/lib/duplicatiâ. No such file or directoryâ
I can see from the logging in the script that itâs not called.
Iâve tried to repair the database, reboot the Ubuntu server, but canât clear this error. Iâve checked and the permissions on the script havenât changed.
Anyone any ideas?