diff options
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  | 
