From 9510447e56f49f8495b0328b56beacafe1f25074 Mon Sep 17 00:00:00 2001 From: hackbard Date: Wed, 10 Sep 2003 13:27:45 +0000 Subject: [PATCH] automated mount procedure - dangerous --- backup.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/backup.sh b/backup.sh index 70e667a..d7bce9a 100755 --- a/backup.sh +++ b/backup.sh @@ -8,22 +8,24 @@ host=`hostname` # set the backup directory if [ "$host" = "gate" ] ; then - #mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" elif [ "$host" = "sparc" ] ; then - #mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" elif [ "$host" = "mobile" ] ; then - #mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" elif [ "$host" = "right-hand" ] ; then - #mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" elif [ "$host" = "hackstation" ] ; then backup_dir="/mnt/lfs/backup" elif [ "$host" = "hdw" ] ; then + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" elif [ "$host" = "left-hand" ] ; then + mount -tnfs hackstation:/mnt/lfs/backup /mnt/nfs backup_dir="/mnt/nfs" else echo "pls adept the script for $host ..." @@ -63,6 +65,7 @@ fi # creating backup if [ -d ${backup_dir}/${host}-backup-${backup_date} ] ; then echo "u already did a backup today! remove it manually first!" + [ ! "$host" = "hackstation" ] && umount /mnt/nfs exit 0 fi @@ -210,7 +213,7 @@ fi # end! umounting nfs shared backup directory if [ "$host" != "hackstation" ] ; then echo "umounting nfs backup - dir" - #cd $HOME && umount /mnt/nfs + cd $HOME && umount /mnt/nfs fi echo "done ..." -- 2.20.1