diff options
| author | intrigeri <intrigeri@boum.org> | 2006-01-19 21:56:44 +0000 | 
|---|---|---|
| committer | intrigeri <intrigeri@boum.org> | 2006-01-19 21:56:44 +0000 | 
| commit | 96023985bce5fc3186487a08efe1e3b665574ced (patch) | |
| tree | 9210759697b7d808f8723d63dba1e36ee8c68dc6 | |
| parent | 49f1d7f86cb8ff5331d866577788346c4ca703bb (diff) | |
| download | backupninja-96023985bce5fc3186487a08efe1e3b665574ced.tar.gz backupninja-96023985bce5fc3186487a08efe1e3b665574ced.tar.bz2 | |
lib/vserver.in[init_vservers]: warn if vservers are enabled but no vserver is found
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | lib/vserver.in | 6 | 
2 files changed, 6 insertions, 1 deletions
| @@ -32,6 +32,7 @@ version 0.9.3 -- unreleased  	 . init_vservers: test in a stricter way the real vservers availability  	 . init_vservers: canonicalize VROOTDIR (since duplicity et al.  	   don't follow symlinks) +	 . init_vservers: warn if vservers are enabled but no vserver is found      known bugs:          easydialog:            . formDisplay does not return exit status. diff --git a/lib/vserver.in b/lib/vserver.in index 3030387..bb1a152 100644 --- a/lib/vserver.in +++ b/lib/vserver.in @@ -64,7 +64,11 @@ init_vservers() {              return        fi        found_vservers=`ls $VROOTDIR | grep -E -v "lost+found|ARCHIVES" | tr "\n" " "` -      [ -n "$found_vservers" ] || return +      if [ -z "$found_vservers" ]; then +         `if [ "$arg" = nodialog ]; then echo warning; else echo "msgBox warning"; fi` \ +            "vservers enabled in $conffile, but no vserver was found in $VROOTDIR.";       +            return +      fi        vservers_are_available=yes     fi  } | 
