9 lines
95 B
Bash
Executable File
9 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -e /run/sshd/ ]; then
|
|
mkdir /run/sshd/
|
|
fi
|
|
|
|
exec 2>&1
|
|
exec /usr/sbin/sshd -D
|