20 lines
477 B
SYSTEMD
20 lines
477 B
SYSTEMD
|
[Unit]
|
||
|
Description=IPv4 firewall with iptables
|
||
|
AssertPathExists=/etc/sysconfig/iptables
|
||
|
Before=network-pre.target
|
||
|
Wants=network-pre.target
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStart=/usr/libexec/iptables/iptables.init start
|
||
|
ExecReload=/usr/libexec/iptables/iptables.init reload
|
||
|
ExecStop=/usr/libexec/iptables/iptables.init stop
|
||
|
Environment=BOOTUP=serial
|
||
|
Environment=CONSOLETYPE=serial
|
||
|
StandardOutput=syslog
|
||
|
StandardError=syslog
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|