7 lines
125 B
Plaintext
7 lines
125 B
Plaintext
|
#!/bin/bash
|
||
|
[[ -f ./setup ]] && source ./setup
|
||
|
|
||
|
pushd /root > /dev/null
|
||
|
exec su-exec root /usr/sbin/sshd -D -e 2>&1
|
||
|
popd
|