2018-08-25 23:39:06 +02:00
|
|
|
[Unit]
|
|
|
|
Description=OpenBSD Secure Shell server per-connection daemon
|
2022-09-26 16:43:15 +02:00
|
|
|
Documentation=man:sshd(8) man:sshd_config(5)
|
2023-10-30 17:51:44 +01:00
|
|
|
{% if __sshd_service_after is not none %}
|
|
|
|
After={{ __sshd_service_after }}
|
|
|
|
{% endif %}
|
|
|
|
{% if __sshd_service_wants is string %}
|
|
|
|
Wants={{ __sshd_service_wants }}
|
|
|
|
{% elif __sshd_service_wants is iterable %}
|
|
|
|
{% for file in __sshd_service_wants %}
|
|
|
|
Wants={{ file }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2018-08-25 23:39:06 +02:00
|
|
|
|
|
|
|
[Service]
|
2023-10-30 17:51:44 +01:00
|
|
|
{% if __sshd_environment_file is string %}
|
|
|
|
EnvironmentFile=-{{ __sshd_environment_file }}
|
|
|
|
{% elif __sshd_environment_file is iterable %}
|
|
|
|
{% for file in __sshd_environment_file %}
|
|
|
|
EnvironmentFile=-{{ file }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2024-03-18 19:20:31 +01:00
|
|
|
ExecStart=-{{ sshd_binary }} -i {{ __sshd_environment_variable }} -f
|
|
|
|
{%- if sshd_main_config_file is not none and sshd_config_file | dirname == sshd_main_config_file ~ '.d' %}
|
2023-10-30 17:51:44 +01:00
|
|
|
{{- sshd_main_config_file }}
|
|
|
|
{% else %}
|
|
|
|
{{- sshd_config_file }}
|
|
|
|
{% endif %}
|
2018-08-25 23:39:06 +02:00
|
|
|
StandardInput=socket
|
2023-10-30 14:27:37 +01:00
|
|
|
{% if __sshd_runtime_directory is not none %}
|
2022-09-26 16:43:15 +02:00
|
|
|
RuntimeDirectory={{ __sshd_runtime_directory }}
|
2023-10-30 17:51:44 +01:00
|
|
|
RuntimeDirectoryPreserve=yes
|
2022-09-26 16:43:15 +02:00
|
|
|
RuntimeDirectoryMode={{ __sshd_runtime_directory_mode }}
|
2023-10-30 14:27:37 +01:00
|
|
|
{% endif %}
|