diff options
Diffstat (limited to 'debian/openssh-server.ssh.runscript/finish')
-rw-r--r-- | debian/openssh-server.ssh.runscript/finish | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/openssh-server.ssh.runscript/finish b/debian/openssh-server.ssh.runscript/finish new file mode 100644 index 000000000..7e29ef1db --- /dev/null +++ b/debian/openssh-server.ssh.runscript/finish | |||
@@ -0,0 +1,16 @@ | |||
1 | #!/bin/sh | ||
2 | set -e | ||
3 | |||
4 | NAME=ssh | ||
5 | |||
6 | [ $1 = -1 ] && echo "runsv: ERROR in $NAME: unexpected error or wrong sh syntax" | ||
7 | # no need to stop the service here, runsv will stop trying after the first attempt | ||
8 | |||
9 | [ $1 = 161 ] && echo "runsv: ERROR $1 in $NAME: disabled by local settings" \ | ||
10 | && sv d $(dirname $0) && exit 0 | ||
11 | |||
12 | [ $1 = 162 ] && echo "runsv: ERROR $1 in $NAME: configtest or early setup failed" \ | ||
13 | && sv d $(dirname $0) && exit 0 | ||
14 | |||
15 | echo "$NAME Stopped" | ||
16 | |||