X-Git-Url: http://git.pippins.net/embedvideo/.git/static/git-logo.png?a=blobdiff_plain;f=scripts%2Fdrive.sh;h=367016c57c56c00df1d94b6d09c9d1b905530175;hb=dd824ff649e2701137a975e4c6be067a7a972a60;hp=dbe6b0b7e074349605af6124c4479e5b05a47ad0;hpb=6bf84dfd36b859d1bb2cf43f2fc998eee3fd65cc;p=backups%2F.git diff --git a/scripts/drive.sh b/scripts/drive.sh index dbe6b0b..367016c 100755 --- a/scripts/drive.sh +++ b/scripts/drive.sh @@ -6,14 +6,16 @@ export PATH=$scriptsdir:$PATH # file locations and other values today=$(date +%Y%m%d%H%M%S) +mailto='carl@ecbaldwin.net' datadir="/var/lib/backups" +backupdirs="/home /etc /var/backups /var/lib/debfoster /var/lib/mailman /var/lib/iptables /var/lib/dpkg" tmpdir="/dev/shm/backups" currentfiles="$tmpdir/files.db" backupdb="$datadir/backups.db" backups="$tmpdir/backup-list.db" statusfile="$tmpdir/backup-status.txt" isomountdir="/backup/iso-mount" -isoimage="/backup/iso-mount.iso" +isoimage="/backup/ISOs/$today.img" restorescript="$scriptsdir/restore.sh" echo "Creating the iso image in $isoimage" @@ -21,7 +23,7 @@ touch $isoimage # chmod 600 $isoimage # Create filesystem on iso image here -dd if=/dev/null of=$isoimage bs=2048k count=0 seek=2220 +dd if=/dev/null of=$isoimage bs=1M count=0 seek=4440 mke2fs -b 2048 -F $isoimage echo "Mounting the iso image" @@ -37,7 +39,7 @@ echo "Running find to get the status of files" { for type in d f l; do findformat="$type %#m %u %g %s %CY%Cm%Cd%CH%CM%CS 0 %p\0" - find /home -type $type -printf "$findformat" + find $backupdirs -type $type -printf "$findformat" done } > $currentfiles @@ -55,8 +57,25 @@ cat $backups | rsync $rsyncopts / $isomountdir echo "Copying over database and status file" cp $statusfile $backupdb $restorescript $isomountdir -# umount $isomountdir +echo "Unmounting image" +umount $isomountdir + +echo "Calculating md5sum for image" +md5sum $isoimage | awk '{print$1}' > $isoimage.md5sum # Burn the iso image -# dvdrecord [-dummy] [-overburn] -dao speed=8 dev=[ATAPI:]?,?,? iso-image.iso -cat $statusfile | mailx -s "DVD Image available on ball, burn it!" carl@ecbaldwin.net +echo "Burn the image to a DVD" +if cdrecord-wrapper.sh -dao speed=8 dev=ATA:1,0,0 $isoimage; then + md5sum_file=$(tempfile) + dd if=/dev/hdc bs=2048k count=2220 | md5sum | awk '{print$1}' > $md5sum_file + if ! cmp $md5sum_file $isoimage.md5sum; then + echo "Failed" | mailx -s "DVD md5sum doesn't match image file!!!" $mailto + exit 1 + fi +else + echo "Failed" | mailx -s "DVD burning failed!!!" $mailto + exit 1 +fi + +# Email me +cat $statusfile | mailx -s "DVD burned. File it as $today" $mailto