11 lines
126 B
Bash
Executable File
11 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
mkdir -p /run/sshd
|
|
|
|
if [ ! -e "/var/tmp/jumpbox.done" ]; then
|
|
./setup.sh
|
|
fi
|
|
|
|
exec /usr/sbin/sshd -D -e
|