X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=usr%2Flocal%2Fbin%2Fvserver-hashify-all;h=055cc5101194fd51d0ff35a886e2978f01ce2141;hb=refs%2Fheads%2Fds-host;hp=763cfbfb489e25142c7171c30f72eda57a47077f;hpb=3dc12524a07c24998f52c2a58be15b0526326bcb;p=matthijs%2Fservers%2Fdrsnuggles.git diff --git a/usr/local/bin/vserver-hashify-all b/usr/local/bin/vserver-hashify-all index 763cfbf..055cc51 100755 --- a/usr/local/bin/vserver-hashify-all +++ b/usr/local/bin/vserver-hashify-all @@ -3,13 +3,18 @@ # The dir containing vserver configuration VSERVERS_CONF="/etc/vservers" -for VDIR in $VSERVERS_CONF/*; do +for VDIR in "$VSERVERS_CONF"/*; do NAME=`basename $VDIR` - # Check if its config dir exists + # Check if its a config dir if [ ! -d "$VDIR" ]; then continue; fi + if [ ! -d "$VDIR"/apps/vunify ]; then + echo "Skipping vserver $NAME, hashify is disabled" + continue + fi + echo "Hashifying vserver $NAME..." sudo vserver "$NAME" hashify done