OpenSSH finish configuration example for Debian GNU/Linux 11 (bullseye)

Get the default configuration file finish for OpenSSH, optimized for Debian GNU/Linux 11 (bullseye). This example configuration ensures optimal compatibility and performance for OpenSSH, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/sv/ssh/finish.

For more configurations and setup guides, visit our related files section to further customize your system.

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


    
  

Config Details

Location
/etc/sv/ssh/finish
Operating system
Debian GNU/Linux 11 (bullseye)
Length
16 lines
MD5 checksum
f5f032f6f3e569c821346294d410b636

Usage

Download the raw file with wget or curl

Wget

wget -O finish.example https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/finish

cURL

curl https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/finish > finish.example