X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fsys;h=9b836a7efce3ce43191c51f5e6dba05f6dfe6c80;hb=d52a1ac97e97c51c15ccd52d7dce93d3a092e636;hp=fe780b5c1c2897312976bbb6cf2a5025f3bac458;hpb=907f7d4455c722670e2f787b6f3f77877891862b;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/sys b/handlers/sys index fe780b5..9b836a7 100755 --- a/handlers/sys +++ b/handlers/sys @@ -26,10 +26,40 @@ getconf partitionsfile /var/backups/partitions.__star__.txt getconf hardware yes getconf hardwarefile /var/backups/hardware.txt +# See if vservers are configured +if [ "$vservers" = "yes" ] +then + if [ ! -d $VROOTDIR ] + then + fatal "vservers enabled, but $VROOTDIR does not exist!" + else + info "vserver method enabled" + usevserver=1 + fi +fi + if [ "$packages" == "yes" ]; then - if [ ! -x "`which dpkg`" ]; then - warning "can't find dpkg, skipping installed packages report." - packages="no" + if [ $usevserver ] + then + for vserver in `ls $VROOTDIR |grep -v lost+found` + do + running=`vserver-info $vserver RUNNING` + if [ $running = 1]; then + if [ ! -x "`$VSERVER $vserver exec which dpkg`" ]; then + warning "can't find dpkg in vserver $vserver, skipping installed packages report." + nodpkg="$nodpkg $vserver" + fi + else + warning "vserver $vserver is not running, skipping installed packages report." + nodpkg="$nodpkg $vserver" + fi + + done + else + if [ ! -x "`which dpkg`" ]; then + warning "can't find dpkg, skipping installed packages report." + packages="no" + fi fi fi @@ -57,10 +87,22 @@ fi # here we grab a list of the packages installed and removed. # +if [ $usevserver ] +then + for vserver in `ls $VROOTDIR | grep -v $nodpkg | grep -v lost+found` + do + debug "$VSERVER $vserver exec dpkg --get-selections > $VROOTDIR/$vserver$packagesfile" + $VSERVER $vserver exec dpkg --get-selections > $VROOTDIR/$vserver$packagesfile + done +fi + +# We want to perform this on the host as well if [ "$packages" == "yes" ]; then + debug "dpkg --get-selections > $packagesfile" dpkg --get-selections > $packagesfile fi + ## PARTITIONS ############################# # here we use sfdisk to dump a listing of all the partitions.