11 lines
132 B
Bash
Executable File
11 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ ! -d /run/sshd/ ]; then
|
|
install -m 755 -o root -g root -d /run/sshd/
|
|
fi
|
|
|
|
exec 2>&1
|
|
exec /usr/sbin/sshd -D
|