1
0
Fork 0
openssh/debian/openssh-server.ssh.runscript/finish
Daniel Baumann 31f6d7a384
Adding debian version 1:10.0p1-5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 09:50:02 +02:00

16 lines
470 B
Bash

#!/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"