ansible.nftables/templates/lib/systemd/system/nftables.service.j2

21 lines
492 B
Plaintext
Raw Normal View History

2018-02-06 16:58:18 +01:00
# {{ ansible_managed }}
[Unit]
Description={{ nft_service_name }}
Documentation=man:nft(8) http://wiki.nftables.org
;Before=fail2ban.service
2018-02-06 16:58:18 +01:00
[Service]
Type=oneshot
RemainAfterExit=yes
StandardInput=null
{% if nft__service_protect %}
2018-02-06 16:58:18 +01:00
ProtectSystem=full
ProtectHome=true
{% endif %}
ExecStart={{ nft__bin_location }} -f {{ nft_main_conf_path }}
ExecReload={{ nft__bin_location }} -f {{ nft_main_conf_path }}
ExecStop={{ nft__bin_location }} flush ruleset
2018-02-06 16:58:18 +01:00
[Install]
WantedBy=multi-user.target