X-Git-Url: https://hackdaworld.org/gitweb/?p=scripts%2Fscripts.git;a=blobdiff_plain;f=backup.sh;h=857dcae175a83ec24cd011f8642fe002391fd302;hp=4a3ff0aa393925940accd2ad233c04eb30e4d2ee;hb=8727fb3de34a33d5955b17c43b09e534e49d4e47;hpb=198af925468efff8abee800d337cbe946390e143 diff --git a/backup.sh b/backup.sh index 4a3ff0a..857dcae 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 +elif [ "$host" = "compaq" ] ; 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 @@ -118,7 +121,7 @@ if [ "$host" = "gate" ] ; then # irc stuff mkdir -p ./ircd [ -f /etc/opt/unrealircd/unrealircd.conf ] && \ - cp /etc/opt/unrealircd/unrealircd.conf ./irc + cp /etc/opt/unrealircd/unrealircd.conf ./ircd fi # data stuff @@ -136,12 +139,6 @@ if [ "$host" = "gate" ] ; then echo "copying mail stuff" cp /var/mail/$i ./mail_$i done - - echo "copying /chroot/$i" - tar -cf ./chroot/$i.tar /chroot/$i - done - tar -cf ./mlist-archive.tar /home/mlist/public_html - fi # right-hand data @@ -150,11 +147,9 @@ if [ "$host" = "right-hand" ] ; then for i in www cvs hdw; do if [ -d /chroot/$i ] ; then echo "copying /chroot/$i" - tar .cf ./chroot/$i.tar /chroot/$i + tar -cf ./chroot/$i.tar /chroot/$i fi done - - fi # hackstation / mobile / hdw / sparc specific data @@ -218,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 ..."