2004-12-23 03:54:53 +01:00
|
|
|
#
|
|
|
|
# this handler will save various reports of vital system information.
|
|
|
|
# by default, all the reports are enabled and are saved in /var/backups.
|
|
|
|
#
|
|
|
|
# (1) a list of all the packages installed and removed.
|
|
|
|
# this file can be used to restore the state of installed packages
|
|
|
|
# by running "dpkg --set-selections < dpkg-selections.txt
|
|
|
|
#
|
|
|
|
# (2) the partition table of all disks.
|
|
|
|
# this partition table can be used to format another disk of
|
|
|
|
# the same size. this can be handy if using software raid and
|
|
|
|
# you have a disk go bad. just replace the disk and partition it
|
|
|
|
# by running "sfdisk /dev/sdb < partitions.sdb.txt"
|
|
|
|
# (MAKE SURE YOU PARTITION THE CORRECT DISK!!!)
|
|
|
|
#
|
|
|
|
# (3) hardware information.
|
2005-03-10 12:22:27 +01:00
|
|
|
# write to a text file the important things which hwinfo can discover.
|
|
|
|
#
|
2004-12-23 03:54:53 +01:00
|
|
|
|
|
|
|
getconf packages yes
|
|
|
|
getconf packagesfile /var/backups/dpkg-selections.txt
|
|
|
|
|
|
|
|
getconf partitions yes
|
2005-03-10 12:22:27 +01:00
|
|
|
getconf partitionsfile '/var/backups/partitions.*.txt'
|
2004-12-23 03:54:53 +01:00
|
|
|
|
|
|
|
getconf hardware yes
|
|
|
|
getconf hardwarefile /var/backups/hardware.txt
|
|
|
|
|
|
|
|
if [ "$packages" == "yes" ]; then
|
|
|
|
if [ ! -x "`which dpkg`" ]; then
|
2005-01-03 23:22:58 +01:00
|
|
|
warning "can't find dpkg, skipping installed packages report."
|
2004-12-23 03:54:53 +01:00
|
|
|
packages="no"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$partitions" == "yes" ]; then
|
|
|
|
if [ ! -x "`which sfdisk`" ]; then
|
2005-01-03 23:22:58 +01:00
|
|
|
warning "can't find sfdisk, skipping partition report."
|
2004-12-23 03:54:53 +01:00
|
|
|
partitions="no"
|
|
|
|
fi
|
2005-03-10 12:22:27 +01:00
|
|
|
if [ ! -x "`which hwinfo`" ]; then
|
|
|
|
warning "can't find hwinfo, skipping partition report."
|
|
|
|
partitions="no"
|
|
|
|
fi
|
2004-12-23 03:54:53 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$hardware" == "yes" ]; then
|
2005-03-10 12:22:27 +01:00
|
|
|
if [ ! -x "`which hwinfo`" ]; then
|
|
|
|
warning "can't find hwinfo, skipping hardware report."
|
2004-12-23 03:54:53 +01:00
|
|
|
hardware="no"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
## PACKAGES ##############################
|
|
|
|
|
|
|
|
#
|
|
|
|
# here we grab a list of the packages installed and removed.
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ "$packages" == "yes" ]; then
|
|
|
|
dpkg --get-selections > $packagesfile
|
|
|
|
fi
|
|
|
|
|
|
|
|
## PARTITIONS #############################
|
|
|
|
|
|
|
|
# here we use sfdisk to dump a listing of all the partitions.
|
|
|
|
# these files can be used to directly partition a disk of the same size.
|
|
|
|
|
|
|
|
if [ "$partitions" == "yes" ]; then
|
2005-03-10 12:22:27 +01:00
|
|
|
devices=`hwinfo --disk | grep "Device File" | cut -d\ -f5`
|
2004-12-23 03:54:53 +01:00
|
|
|
for dev in $devices; do
|
2005-03-10 12:22:27 +01:00
|
|
|
[ -b $dev ] || continue
|
|
|
|
label=${dev#/dev/}
|
2004-12-23 03:54:53 +01:00
|
|
|
label=${label//\//-}
|
|
|
|
outputfile=${partitionsfile//__star__/$label}
|
2005-03-10 12:22:27 +01:00
|
|
|
debug "sfdisk -d $dev > $outputfile"
|
2004-12-23 03:54:53 +01:00
|
|
|
sfdisk -d $dev > $outputfile
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
## HARDWARE #############################
|
|
|
|
|
|
|
|
#
|
2005-03-10 12:22:27 +01:00
|
|
|
# here we use hwinfo to dump a table listing all the
|
2004-12-23 03:54:53 +01:00
|
|
|
# information we can find on the hardware of this machine
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ "$hardware" == "yes" ]; then
|
2005-03-10 12:22:27 +01:00
|
|
|
if [ -f $hardwarefile ]; then
|
|
|
|
rm $hardwarefile
|
|
|
|
fi
|
|
|
|
touch $hardwarefile
|
|
|
|
echo -e "\n\n====================== summary ======================\n" >> $hardwarefile
|
|
|
|
hwinfo --short --cpu --network --disk --pci >> $hardwarefile
|
|
|
|
for flag in cpu network disk bios pci; do
|
|
|
|
echo -e "\n\n====================== $flag ======================\n" >> $hardwarefile
|
|
|
|
hwinfo --$flag >> $hardwarefile
|
|
|
|
done
|
2004-12-23 03:54:53 +01:00
|
|
|
fi
|