diff options
Diffstat (limited to 'catsit.sh')
-rw-r--r-- | catsit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catsit.sh b/catsit.sh index 0e2a7e1..6433109 100644 --- a/catsit.sh +++ b/catsit.sh @@ -27,7 +27,7 @@ fi [ $# -lt 2 ] && die 'service name required' action=$(echo "${1}" | tr 'A-Z' 'a-z') -for valid in start stop restart status $(kill -l | tr 'A-Z' 'a-z'); do +for valid in start stop restart status drop $(kill -l | tr 'A-Z' 'a-z'); do [ "${action}" = "${valid}" ] && break done if [ "${action}" != "${valid}" ]; then |