Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Mar 2007 09:06:31 +0000 (GMT)
From:      Robert Davison <rob_27_preston@yahoo.co.uk>
To:        freebsd-questions@freebsd.org
Subject:   Backup Script
Message-ID:  <285897.32858.qm@web25012.mail.ukl.yahoo.com>

next in thread | raw e-mail | index | archive | help
Im trying to write a small backup script which I have put in /etc/periodic/weekly. The script is as follows......
   
  #!/bin/sh
#
#weekly backup of chosen files
#
if
then
        tar -cf /dev/sa0 /var/ftp /home /etc /usr/local
        echo "backing up the disks"
else
        echo "There was a problem" 1>&2
        exit 1
fi
  echo "Finished at `/bin/date`."
exit

   
  Now I have no experience at bash scripting as was wonderng if someone could give me some help with the if statement. Basically im trying to test to see if the machine knows that /dev/sa0 (my tape drive) is accessable. If it is then it continus to the backup, if not then it gives the error message and echos the date.
   
  Any help would be much appreciated.


 		
---------------------------------
 New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at the Yahoo! Mail Championships. Plus: play games and win prizes.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?285897.32858.qm>