File: finish

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 (16 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

NAME=ssh

[ "$1" = -1 ] && echo "runsv: ERROR in $NAME: unexpected error or wrong sh syntax"
# no need to stop the service here, runsv will stop trying after the first attempt

[ "$1" = 161 ] && echo "runsv: ERROR $1 in $NAME: disabled by local settings" \
     && sv d "$(dirname "$0")" && exit 0

[ "$1" = 162 ] && echo "runsv: ERROR $1 in $NAME: configtest or early setup failed" \
     && sv d "$(dirname "$0")" && exit 0

echo "$NAME Stopped"