Small typo

This commit is contained in:
Jack-Benny Persson 2012-02-24 23:18:20 +01:00
parent bed265a4d7
commit 4d24375593

View File

@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
### Config options ### ### Config options ###
BACKUP_DIRS="/home/jake/Documents/wallpaper" BACKUP_DIRS="/home/jake/Documents/wallpapers"
DRIVE="/dev/st0" DRIVE="/dev/st0"
RECHECK_WAIT=60 RECHECK_WAIT=30
MT="/bin/mt" MT="/bin/mt"
TAR="/bin/tar" TAR="/bin/tar"
@ -12,6 +12,7 @@ TAR="/bin/tar"
Do_backup() Do_backup()
{ {
sleep 10 # Wait for the tape to get ready...
echo "Doing backup..." echo "Doing backup..."
${TAR} -cf ${DRIVE} ${BACKUP_DIRS} ${TAR} -cf ${DRIVE} ${BACKUP_DIRS}
exit 0 exit 0