From: madduck Date: Fri, 25 May 2007 09:59:43 +0000 (+0000) Subject: * Fix the regular expression to find the sshd parent process. X-Git-Tag: 0.3~1 X-Git-Url: https://git.madduck.net/code/molly-guard.git/commitdiff_plain/f7542967fa23bca04d39e27318f905ab551b1d9c * Fix the regular expression to find the sshd parent process. --- diff --git a/shutdown b/shutdown index db836ef..0135f1a 100755 --- a/shutdown +++ b/shutdown @@ -50,7 +50,7 @@ test -t 0 || do_real_cmd # only run if we are being called over SSH, that is if the current terminal # was created by sshd. PTS=$(readlink /proc/$$/fd/0) -pgrep -f "^sshd.+${PTS#/dev/}$" >/dev/null || do_real_cmd +pgrep -f "^sshd.+${PTS#/dev/}[[:space:]]*$" >/dev/null || do_real_cmd # pass through help commands case "$CMD $ARGS" in