Added "all" as a recognised server name.

This commit is contained in:
Marcus Whybrow 2012-05-22 17:30:43 +01:00
parent ebb13794fc
commit 4814d07664

2
msm
View File

@ -525,7 +525,7 @@ case "$1" in
echo "No such command see: $0 help"
;;
*)
if is_valid_name "$1" && [[ -e "$SERVER_STORAGE_PATH/$1" ]]; then
if [[ "$1" == "all" ]] || [[ -e "$SERVER_STORAGE_PATH/$1" ]]; then
case "$2" in
start)
;;