mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
18 lines
481 B
Django/Jinja
18 lines
481 B
Django/Jinja
[Unit]
|
|
Description=OpenBSD Secure Shell server
|
|
Documentation=man:sshd(8) man:sshd_config(5)
|
|
|
|
[Service]
|
|
Type=notify
|
|
ExecStartPre={{ sshd_binary }} -t
|
|
ExecStart={{ sshd_binary }} -D -f {{ sshd_config_file }}
|
|
ExecReload={{ sshd_binary }} -t
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
KillMode=process
|
|
Restart=on-failure
|
|
RestartPreventExitStatus=255
|
|
RuntimeDirectory={{ __sshd_runtime_directory }}
|
|
RuntimeDirectoryMode={{ __sshd_runtime_directory_mode }}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|