9 lines
133 B
Bash
9 lines
133 B
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then
|
|
ssh-keygen -A
|
|
fi
|
|
/usr/sbin/sshd
|
|
|
|
exec dotnet Alchegos.MCP.dll
|