12 lines
233 B
Plaintext
Raw Normal View History

2013-09-29 03:32:39 +04:00
#!/usr/bin/env watchman
cfg_sshd_cfgdir='/etc/ssh'
2014-07-03 11:05:52 +04:00
service_respawn=true
2015-06-18 12:38:49 +03:00
service_command='/usr/bin/sshd'
2015-09-04 16:47:37 +03:00
service_args=( -D -f "$cfg_sshd_cfgdir/sshd_config" )
2013-09-29 03:32:39 +04:00
2015-09-04 16:47:37 +03:00
pre_start() {
2013-09-29 03:32:39 +04:00
[[ -e "/etc/ssh/ssh_host_key" ]] || { ssh-keygen -A; }
}