From a85f2db38af1ba1e315dce2dd9b381097c54466a Mon Sep 17 00:00:00 2001 From: micah Date: Sun, 6 Aug 2006 18:25:18 +0000 Subject: [PATCH] Added warning if no devices were found on the system git-svn-id: http://code.autistici.org/svn/backupninja/trunk@423 758a04ac-41e6-0310-8a23-8373a73cc35d --- handlers/sys | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handlers/sys b/handlers/sys index a83baaa..d0e2057 100755 --- a/handlers/sys +++ b/handlers/sys @@ -450,6 +450,9 @@ fi if [ "$partitions" == "yes" ]; then devices=`$HWINFO --disk | grep "Device File" | cut -d\ -f5` + if [ "$devices" == "" ]; then + warning "No harddisks found" + fi for dev in $devices; do [ -b $dev ] || continue label=${dev#/dev/} -- 2.30.2