From bcf38602d9692756e18c485a243686b50144b5ab Mon Sep 17 00:00:00 2001
From: Carl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Date: Thu, 27 Oct 2005 12:44:10 -0600
Subject: [PATCH] Add more directories

---
 scripts/drive.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/drive.sh b/scripts/drive.sh
index 9f17f83..2b758b1 100755
--- a/scripts/drive.sh
+++ b/scripts/drive.sh
@@ -7,6 +7,7 @@ export PATH=$scriptsdir:$PATH
 # file locations and other values
 today=$(date +%Y%m%d%H%M%S)
 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"
@@ -21,7 +22,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 +38,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
 
-- 
2.34.1