15 lines
279 B
Plaintext
Executable File
15 lines
279 B
Plaintext
Executable File
#!/usr/bin/env watchman
|
|
|
|
cfg_sshd_cfgdir='/etc/ssh'
|
|
|
|
service_command='/bin/sshd'
|
|
service_args="-f $cfg_sshd_cfgdir/sshd_config"
|
|
service_pidfile='/run/sshd.pid'
|
|
|
|
sshd_genkeys() {
|
|
[[ -e "/etc/ssh/ssh_host_key" ]] || { ssh-keygen -A; }
|
|
watchman.start
|
|
}
|
|
|
|
start() { sshd_genkeys; }
|