Some clean-up
authorCarl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Tue, 25 Oct 2005 22:14:01 +0000 (16:14 -0600)
committerCarl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Tue, 25 Oct 2005 22:14:01 +0000 (16:14 -0600)
scripts/Makefile.am
scripts/drive.sh
scripts/find-cmd.sh [deleted file]
scripts/restore-header.sh
scripts/restore-script.sh
scripts/rsync-cmd.sh [deleted file]

index a4cb5768639f95344abb78d9b721a95b75adc45a..ba618aaa3f466883c1274f3456f9e7a3f200bb42 100644 (file)
@@ -1,13 +1,11 @@
 bin_SCRIPTS = \
        drive.sh \
        files-from-date.sh \
-       find-cmd.sh \
        list-dates.sh \
        restore-script.sh \
-       rsync-cmd.sh \
        restore.sh
 
-EXTRA_DIST = $(bin_SCRIPTS)
+EXTRA_DIST = $(bin_SCRIPTS) restore-header.sh
 
 restore_scripts = \
        files-from-date.sh \
index a75c20f49bd3aff8d230e581f5f885f413f662cc..4ea1e54d77ef957e0b96617bd2ecfd99f32e0304 100755 (executable)
@@ -15,6 +15,7 @@ backups="$tmpdir/backup-list.db"
 statusfile="$tmpdir/backup-status.txt"
 isomountdir="/backup/iso-mount"
 isoimage="/backup/iso-mount.iso"
+restorescript="$scriptsdir/restore.sh"
 
 echo "Creating the iso image in $isoimage"
 touch $isoimage
@@ -34,7 +35,12 @@ chmod 700 $tmpdir
 touch $currentfiles
 chmod 600 $currentfiles
 echo "Running find to get the status of files"
-find-cmd.sh /home > $currentfiles
+{
+  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"
+  done
+} > $currentfiles
 
 echo "Determining list of files to backup with lsbackups"
 {
@@ -44,10 +50,11 @@ echo "Determining list of files to backup with lsbackups"
 } | lsbackups > $backups 2>$statusfile
 
 echo "Running rsync to pack the image"
-cat $backups | rsync-cmd.sh $isomountdir
+rsyncopts="-l -p -t -g -o -0 --files-from=- --stats --progress"
+cat $backups | rsync $rsyncopts / $isomountdir
 
 echo "Copying over database and status file"
-cp $statusfile $backupdb $isomountdir
+cp $statusfile $backupdb $restorescript $isomountdir
 
 # umount $isomountdir
 
diff --git a/scripts/find-cmd.sh b/scripts/find-cmd.sh
deleted file mode 100755 (executable)
index 51a3749..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-[ $# == 1 ] || exit 1
-
-{
-  for type in d f l; do
-    find $1 -type $type -printf "$type %#m %u %g %s %CY%Cm%Cd%CH%CM%CS 0 %p\0"
-  done
-}
index ae67b1cb74ecf6e93a3fe7977442871b38a00937..a147c62e6a0b397dd704ecb533750342d05395a4 100755 (executable)
@@ -1,14 +1,12 @@
 #!/bin/sh
 export rundir=/tmp/restore-$(date +%Y%m%d%H%M%S)
 if ! mkdir $rundir; then
-  echo 2> "Cannot create temp dir"
+  echo >&2 "Cannot create temp dir"
   exit 1
 fi
-echo $rundir
 
 unset CDPATH
 export mountdir=$(cd $(dirname $0) && pwd)
-echo $mountdir
 
 SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`
 
index 5ae9fe792ea69a2732958bdb842d94ba241e5cee..1bf8dccfd4e8326670ef9ef189598d24c6cecc33 100755 (executable)
@@ -1,9 +1,5 @@
 #!/bin/sh
 
-echo "Ran restore script with $@"
-
-exit 0
-
 export PATH=$rundir:/bin:/usr/bin
 
 if [ $# != 1 ]; then
@@ -12,17 +8,27 @@ if [ $# != 1 ]; then
   exit 1
 fi
 
-# Get the device with the CD in it here
 device=$(mount | grep "on $mountdir " | awk '{print$1}')
 
-cp $mountdir/backups.db $mountdir
+cp $mountdir/backups.db $mountdir/backup-status.txt $rundir
+dbfile=$rundir/backups.db
 
 for date in $(cat $dbfile | list-dates.sh); do
-  eject $device
-  echo >&2 "Please insert backup disk:  $date"
-  echo >&2 "Then press any key"
-  read bogus
-  # Mount the media
-  # rsync-cmd.sh won't work here in its current encarnation
-  cat $dbfile | files-from-date.sh | rsync-cmd.sh $1
+  success=false
+  while ! $success; do
+    eject $device
+    echo >&2 "Please insert backup disk:  $date"
+    read bogus
+
+    # Mount the media
+    mount -t ext2 $device $mountdir
+    if [ "" != "$(grep -l $date $mountdir/backup-status.txt)" ]; then
+      success=true
+    else
+      echo >&2 "This doesn't seem to be the right disk."
+    fi
+  done
+
+  rsyncopts="-l -p -t -g -o -0 --files-from=- --stats --progress "
+  cat $dbfile | files-from-date.sh | rsync $rsyncopts $1 $2
 done
diff --git a/scripts/rsync-cmd.sh b/scripts/rsync-cmd.sh
deleted file mode 100755 (executable)
index b1ea6c9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# This file just has some ideas about how to do the rsync command with the list
-# of file produced by lsbackups
-
-[ $# == 1 ] || exit 1
-[ -d $1   ] || exit 1
-
-# -H ? -W ?
-rsync_opts='-l -p -t -g -o -0 --files-from=-'
-
-other_opts='--stats --progress'
-
-# Should also include directories in there
-rsync $rsync_opts $other_opts / $1