9 lines
137 B
Bash
Executable file
9 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
|
|
if [ ! -f /etc/ssh/ssh_host_rsa_key ];then
|
|
/sshpiperd genkey > /etc/ssh/ssh_host_rsa_key
|
|
fi
|
|
|
|
exec "$@"
|