From 1952f586f09edf4ad1be4ddeef01e190ae152931 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Wed, 4 Apr 2018 20:55:01 +0200 Subject: Made stromboli script more robust in case the NFS mount fails --- stromboli_backup | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'stromboli_backup') diff --git a/stromboli_backup b/stromboli_backup index 4263065..190e7d3 100755 --- a/stromboli_backup +++ b/stromboli_backup @@ -2,6 +2,15 @@ # Backup script for stromboli. This synchronises stromboli's local storage with the NFS data from vesuvio. Since this script mounts and umounts the NFS, it should be configured to be mountable without root on fstab. mount /home/eddy/data + +if [ $? -ne 0 ]; then + # mount failed, better exit so that we don't wipe the existing backup + # TODO send some kind of failure notification + exit 1 +fi + /home/eddy/bin/backup /home/eddy/data /home/eddy/backup + sync + umount /home/eddy/data -- cgit v1.2.3