62b35964e3
The sshd flag `-e` instructs sshd to output any logs to stderr instead of the syslog. Redirect this output to stdout then. Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
6 lines
125 B
Bash
Executable file
6 lines
125 B
Bash
Executable file
#!/bin/bash
|
|
[[ -f ./setup ]] && source ./setup
|
|
|
|
pushd /root > /dev/null
|
|
exec su-exec root /usr/sbin/sshd -D -e 2>&1
|
|
popd
|