diff options
Diffstat (limited to 'debian/openssh-server.if-up')
-rw-r--r-- | debian/openssh-server.if-up | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/openssh-server.if-up b/debian/openssh-server.if-up index c44a4d257..9b2140352 100644 --- a/debian/openssh-server.if-up +++ b/debian/openssh-server.if-up | |||
@@ -25,6 +25,11 @@ if [ ! -e /usr/sbin/sshd ]; then | |||
25 | exit 0 | 25 | exit 0 |
26 | fi | 26 | fi |
27 | 27 | ||
28 | if [ ! -f /var/run/sshd.pid ] || \ | ||
29 | [ "$(ps -p "$(cat /var/run/sshd.pid)" -o comm=)" = sshd ]; then | ||
30 | exit 0 | ||
31 | fi | ||
32 | |||
28 | /etc/init.d/ssh reload >/dev/null 2>&1 || true | 33 | /etc/init.d/ssh reload >/dev/null 2>&1 || true |
29 | 34 | ||
30 | exit 0 | 35 | exit 0 |