diff options
author | intrigeri <intrigeri@boum.org> | 2006-01-17 22:22:16 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2006-01-17 22:22:16 +0000 |
commit | 2f209f803136ff7dfe0dd1bb30040b1ee354c851 (patch) | |
tree | e526224f0846dcd9fda67256cdeed172d8fbfa6b /lib/vserver.in | |
parent | 38642e9c0f902e3d7de1fa1154a9561ed0ef042c (diff) | |
download | backupninja-2f209f803136ff7dfe0dd1bb30040b1ee354c851.tar.gz backupninja-2f209f803136ff7dfe0dd1bb30040b1ee354c851.tar.bz2 |
lib/vserver.in: enhanced the VROOTDIR discovery
Diffstat (limited to 'lib/vserver.in')
-rw-r--r-- | lib/vserver.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vserver.in b/lib/vserver.in index 30b2dfb..113e7bf 100644 --- a/lib/vserver.in +++ b/lib/vserver.in @@ -30,7 +30,7 @@ init_vservers() { getconf vservers no getconf VSERVERINFO /usr/sbin/vserver-info getconf VSERVER /usr/sbin/vserver - getconf VROOTDIR `if [ -f "$VSERVERINFO" ]; then $VSERVERINFO info SYSINFO |grep vserver-Rootdir | awk '{print $2}'; fi` + getconf VROOTDIR `if [ -x "$VSERVERINFO" ]; then $VSERVERINFO info SYSINFO | grep '^ *vserver-Rootdir' | awk '{print $2}'; fi` # init this library's global variables vservers_are_available=no found_vservers= |