diff options
| author | Elijah Saxon <elijah@riseup.net> | 2005-01-03 22:22:58 +0000 | 
|---|---|---|
| committer | Elijah Saxon <elijah@riseup.net> | 2005-01-03 22:22:58 +0000 | 
| commit | 6bc45553f06e6c9b7c1162253bd0e28f3b07bbf2 (patch) | |
| tree | 2a7decaed55d325f5f0b0ddad724e6e4a8496d1a /handlers/sys | |
| parent | a7bf628e6129254d0abb47e00fbb0df2d588cf34 (diff) | |
| download | backupninja-6bc45553f06e6c9b7c1162253bd0e28f3b07bbf2.tar.gz backupninja-6bc45553f06e6c9b7c1162253bd0e28f3b07bbf2.tar.bz2  | |
version 0.4.1
Diffstat (limited to 'handlers/sys')
| -rwxr-xr-x | handlers/sys | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/handlers/sys b/handlers/sys index 35a3919..140db76 100755 --- a/handlers/sys +++ b/handlers/sys @@ -28,21 +28,21 @@ getconf hardwarefile /var/backups/hardware.txt  if [ "$packages" == "yes" ]; then  	if [ ! -x "`which dpkg`" ]; then -		debug 2 "can't find dpkg, skipping installed packages report." +		warning "can't find dpkg, skipping installed packages report."  		packages="no"  	fi  fi  if [ "$partitions" == "yes" ]; then  	if [ ! -x "`which sfdisk`" ]; then -		debug 2 "can't find sfdisk, skipping partition report." +		warning "can't find sfdisk, skipping partition report."  		partitions="no"  	fi  fi  if [ "$hardware" == "yes" ]; then  	if [ ! -x "`which discover`" ]; then -		debug 2 "can't find discover, skipping hardware report." +		warning "can't find discover, skipping hardware report."  		hardware="no"  	fi  fi  | 
