diff options
author | intrigeri <intrigeri@boum.org> | 2006-02-02 20:09:50 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2006-02-02 20:09:50 +0000 |
commit | 3b3252bfdd29b5cb4a981deb9bf61ab08e1c3de5 (patch) | |
tree | 4cc1bad77b106b0d9e086a944a6d83ae8da562e0 /lib/vserver.in | |
parent | b756a86db7bb96737b8a6f82934e5ab675b2811c (diff) | |
download | backupninja-3b3252bfdd29b5cb4a981deb9bf61ab08e1c3de5.tar.gz backupninja-3b3252bfdd29b5cb4a981deb9bf61ab08e1c3de5.tar.bz2 |
lib/vserver.in: fixed #351083 (readlink syntax error)
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 1c267c6..8a585bf 100644 --- a/lib/vserver.in +++ b/lib/vserver.in @@ -35,7 +35,7 @@ init_vservers() { getconf VSERVER /usr/sbin/vserver getconf VROOTDIR `if [ -x "$VSERVERINFO" ]; then $VSERVERINFO info SYSINFO | grep '^ *vserver-Rootdir' | awk '{print $2}'; fi` # canonicalize VROOTDIR - VROOTDIR=`readlink --canonicalize $VROOTDIR` + [ -z "$VROOTDIR" ] || VROOTDIR=`readlink --canonicalize $VROOTDIR` # init this library's global variables vservers_are_available=no found_vservers= |