#!/usr/bin/zsh # 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