File: run

package info (click to toggle)
openssh 1%3A10.2p1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,564 kB
  • sloc: ansic: 134,025; sh: 15,803; makefile: 1,721; cpp: 773; awk: 341; pascal: 84; csh: 1
file content (20 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env /lib/runit/invoke-run
set -e

NAME="ssh"

sv start auditd  || sv check auditd || true

# don't start if 'sshd_not_to_be_run' exists
test -e /etc/ssh/sshd_not_to_be_run && exit 161

#Create /run/sshd
test -d /run/sshd || mkdir /run/sshd && chmod 0755 /run/sshd

exec 2>&1

#Config test
/usr/sbin/sshd -t || exit 162

echo "Starting $NAME..."
exec /usr/sbin/sshd -D -e $SSHD_OPTS