summaryrefslogtreecommitdiff
path: root/debian/openssh-server.ssh.runscript
diff options
context:
space:
mode:
authorLorenzo Puliti <lorenzo.ru.g@gmail.com>2019-08-05 20:24:41 +0200
committerLorenzo Puliti <lorenzo.ru.g@gmail.com>2019-08-12 12:22:32 +0200
commitb48697c64a0ac57eed494104f4c82d61f5b6fc89 (patch)
tree214ead8943ac5a2b96a3a6221709e4178fc4d3a4 /debian/openssh-server.ssh.runscript
parente5fc16844f5772a12808e22a72c0ee50977c4e60 (diff)
Add a runscript for runit
Add a 'run' and a 'finish' script for runit init system; rely on dh-runit for maintscript code.
Diffstat (limited to 'debian/openssh-server.ssh.runscript')
-rw-r--r--debian/openssh-server.ssh.runscript/finish16
-rw-r--r--debian/openssh-server.ssh.runscript/run20
2 files changed, 36 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
2set -e
3
4NAME=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
15echo "$NAME Stopped"
16
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
2set -e
3
4NAME="ssh"
5
6sv start auditd || sv check auditd || true
7
8# don't start if 'sshd_not_to_be_start' exists
9test -e /etc/ssh/sshd_not_to_be_run && exit 161
10
11#Create /run/sshd
12test -d /run/sshd || mkdir /run/sshd && chmod 0755 /run/sshd
13
14exec 2>&1
15
16#Config test
17/usr/sbin/sshd -t || exit 162
18
19echo "Starting $NAME..."
20exec /usr/sbin/sshd -D -e $SSHD_OPTS