diff options
author | intrigeri <intrigeri@boum.org> | 2006-01-19 21:56:53 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2006-01-19 21:56:53 +0000 |
commit | 299a53073483adce34c3d6a3c931f506af83b18e (patch) | |
tree | ae6f078107dd699ecdd481e0d1c3d0a46c7a208f /lib | |
parent | 96023985bce5fc3186487a08efe1e3b665574ced (diff) | |
download | backupninja-299a53073483adce34c3d6a3c931f506af83b18e.tar.gz backupninja-299a53073483adce34c3d6a3c931f506af83b18e.tar.bz2 |
lib/vserver.in: new function: vservers_exist
handlers/dup: make use of new lib/vserver functionality
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vserver.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/vserver.in b/lib/vserver.in index bb1a152..1c267c6 100644 --- a/lib/vserver.in +++ b/lib/vserver.in @@ -74,7 +74,28 @@ init_vservers() { } ## -## If the argument is the name of a vserver selected use by the current helper, +## If all the arguments are existing vservers names, returns 0. +## Else, returns 1. Also returns 1 if no argument is given. +## +vservers_exist() { + [ $# -ge 1 ] || return 1 + local args="$1" + local vserver i found + for vserver in $args ; do + found=no + for i in $found_vservers ; do + if [ $vserver = $i ]; then + found=yes + break + fi + done + [ $found = yes ] || return 1 + done + return 0 +} + +## +## If the argument is the name of a vserver selected by the current helper, ## echoes 'on' and returns 0. ## Else, echoes 'off' and returns 1. ## |