diff options
author | Elijah Saxon <elijah@riseup.net> | 2005-03-14 21:49:29 +0000 |
---|---|---|
committer | Elijah Saxon <elijah@riseup.net> | 2005-03-14 21:49:29 +0000 |
commit | 907f7d4455c722670e2f787b6f3f77877891862b (patch) | |
tree | 60ade293e6981ff380618a0a3cd5b6203fe14db9 /handlers | |
parent | 2064c73896beccbf156112a2ace84b2d9cafcd82 (diff) | |
download | backupninja-907f7d4455c722670e2f787b6f3f77877891862b.tar.gz backupninja-907f7d4455c722670e2f787b6f3f77877891862b.tar.bz2 |
fixed bug with __star__ and sys handler.
well, not really, but i worked around a bug that i don't understand.
Diffstat (limited to 'handlers')
-rwxr-xr-x | handlers/sys | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/handlers/sys b/handlers/sys index be8f3fc..fe780b5 100755 --- a/handlers/sys +++ b/handlers/sys @@ -14,14 +14,14 @@ # (MAKE SURE YOU PARTITION THE CORRECT DISK!!!) # # (3) hardware information. -# write to a text file the important things which hwinfo can discover. +# write to a text file the important things which hwinfo can gleen. # getconf packages yes getconf packagesfile /var/backups/dpkg-selections.txt getconf partitions yes -getconf partitionsfile '/var/backups/partitions.*.txt' +getconf partitionsfile /var/backups/partitions.__star__.txt getconf hardware yes getconf hardwarefile /var/backups/hardware.txt @@ -91,6 +91,7 @@ if [ "$hardware" == "yes" ]; then fi touch $hardwarefile echo -e "\n\n====================== summary ======================\n" >> $hardwarefile + debug "hwinfo --short --cpu --network --disk --pci >> $hardwarefile" hwinfo --short --cpu --network --disk --pci >> $hardwarefile for flag in cpu network disk bios pci; do echo -e "\n\n====================== $flag ======================\n" >> $hardwarefile |