mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-21 15:13:10 +01:00
badf2fc9f0
By default, in Debian and its derivatives, stopping the Shorewall service executes `/sbin/shorewall clear`. The `SAFESTOP` setting in /etc/default/shorewall is intended to stop the service by calling `/sbin/shorewall stop`. However, the systemd service files do not support this. Instead, install a shell-script that sources /etc/default/shorewall and honours `SAFESTOP` when stopping Shorewall and patch the service files to call it. Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
25 lines
662 B
Plaintext
25 lines
662 B
Plaintext
#
|
|
# The Shoreline Firewall (Shorewall) Packet Filtering Firewall
|
|
#
|
|
# Copyright 2011 Jonathan Underwood <jonathan.underwood@gmail.com>
|
|
#
|
|
[Unit]
|
|
Description=Shorewall IPv6 firewall (lite)
|
|
Documentation=man:shorewall6-lite(8)
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
After=shorewall-lite.service
|
|
Conflicts=ip6tables.service firewalld.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
EnvironmentFile=-/etc/default/shorewall6-lite
|
|
StandardOutput=syslog
|
|
ExecStart=/sbin/shorewall6-lite $OPTIONS start
|
|
ExecStop=/usr/share/shorewall/stop_service shorewall6-lite
|
|
ExecReload=/sbin/shorewall6-lite $OPTIONS reload
|
|
|
|
[Install]
|
|
WantedBy=basic.target
|