diff options
Diffstat (limited to 'debian/openssh-server.ssh.runscript/run')
-rw-r--r-- | debian/openssh-server.ssh.runscript/run | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/openssh-server.ssh.runscript/run b/debian/openssh-server.ssh.runscript/run new file mode 100644 index 000000000..f9b08a871 --- /dev/null +++ b/debian/openssh-server.ssh.runscript/run | |||
@@ -0,0 +1,20 @@ | |||
1 | #!/usr/bin/env /lib/runit/invoke-run | ||
2 | set -e | ||
3 | |||
4 | NAME="ssh" | ||
5 | |||
6 | sv start auditd || sv check auditd || true | ||
7 | |||
8 | # don't start if 'sshd_not_to_be_start' exists | ||
9 | test -e /etc/ssh/sshd_not_to_be_run && exit 161 | ||
10 | |||
11 | #Create /run/sshd | ||
12 | test -d /run/sshd || mkdir /run/sshd && chmod 0755 /run/sshd | ||
13 | |||
14 | exec 2>&1 | ||
15 | |||
16 | #Config test | ||
17 | /usr/sbin/sshd -t || exit 162 | ||
18 | |||
19 | echo "Starting $NAME..." | ||
20 | exec /usr/sbin/sshd -D -e $SSHD_OPTS | ||