X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=blobdiff_plain;f=handlers%2Fsys.in;h=d88d34c3d037a20580cc93f82a8c0296e40b17e0;hp=2c48883ce11576639a7ae7231249b59ccd840c6f;hb=b499255f8a56ce3b95c2a52b8b209ae8b657bd64;hpb=33ff4f7506fcaab09fd7ad898507f37b7777ba8f diff --git a/handlers/sys.in b/handlers/sys.in index 2c48883..d88d34c 100755 --- a/handlers/sys.in +++ b/handlers/sys.in @@ -54,7 +54,7 @@ then getconf packagemgr `which dpkg` getconf packagemgroptions ' --get-selections *' getconf selectionsfile $parentir/debconfsel.txt - getconf debconfgetselections `debconf-get-selections` + getconf debconfgetselections `which debconf-get-selections` elif [ $os = "redhat" ] then getconf packagesfile $parentdir/rpmpackages.txt @@ -188,10 +188,12 @@ catiffile () { } catifexec () { - echo $HASHES >> $sysreportfile - echo "# $STATUS" >> $sysreportfile - echo $HASHES >> $sysreportfile - $1 >> $sysreportfile 2>&1 || info "executing of $1 failed" + if [ -x $1 ]; then + echo $HASHES >> $sysreportfile + echo "# $STATUS" >> $sysreportfile + echo $HASHES >> $sysreportfile + $* >> $sysreportfile 2>&1 || info "executing of $1 failed" + fi } @@ -380,7 +382,7 @@ STATUS="Gathering information about your ide drivers:" catiffile "/proc/ide" STATUS="Gathering information about your bus:" -catifexec lspci +catifexec "/usr/bin/lspci" catiffile "/proc/bus" echo @@ -391,7 +393,7 @@ STATUS="Collecting information from /etc/fstab:" catiffile "/etc/fstab" STATUS="Collecting disk partition information:" -catifexec "fdisk -l" +catifexec "/sbin/fdisk -l" STATUS="Checking mounted file systems (mount) " catifexec "/bin/mount" @@ -408,6 +410,9 @@ catiffile "/etc/raidtab" STATUS="Collecting Software RAID information (/etc/mdadm.conf)" catiffile "/etc/mdadm.conf" +STATUS="Collecting Software RAID information (/sbin/mdadm -Q)" +catifexec "/sbin/mdadm" "-Q" "--detail" '/dev/md?*' + STATUS="Collecting Automount information (auto.master)" catiffile "/etc/auto.master"