summaryrefslogtreecommitdiffstats
path: root/projectroot
diff options
context:
space:
mode:
authorJuergen Borleis <jbe@pengutronix.de>2020-01-22 12:21:28 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-01-23 09:50:24 +0100
commit568248c69cfd58bf2f5e53407c523d8e01440072 (patch)
tree8dd1dfcac823cf0face139cf8cf8f41c79031291 /projectroot
parent0433da22c0257810babc120de324a13a570f26fe (diff)
downloadptxdist-568248c69cfd58bf2f5e53407c523d8e01440072.tar.gz
ptxdist-568248c69cfd58bf2f5e53407c523d8e01440072.tar.xz
iptables: serialize startup service units
Since iptables-1.8.x the tool complains at run-time if a second instance holds the shared lock: Another app is currently holding the xtables lock. Perhaps you want to use the -w option? If IPv4 and IPv6 is enabled, this concurrent situation can happen and at the end one of both setups isn't done (first instance wins). By serializing both service units this concurrent situation cannot occur and both setups are done as expected. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'projectroot')
-rw-r--r--projectroot/usr/lib/systemd/system/ip6tables.service2
-rw-r--r--projectroot/usr/lib/systemd/system/iptables.service2
2 files changed, 4 insertions, 0 deletions
diff --git a/projectroot/usr/lib/systemd/system/ip6tables.service b/projectroot/usr/lib/systemd/system/ip6tables.service
index e842cc197..7cf9ab88b 100644
--- a/projectroot/usr/lib/systemd/system/ip6tables.service
+++ b/projectroot/usr/lib/systemd/system/ip6tables.service
@@ -3,6 +3,8 @@ Description=Packet Filtering Framework
DefaultDependencies=no
After=systemd-sysctl.service
Before=sysinit.target
+# ensure, we are running after IPv4
+After=iptables.service
ConditionFileNotEmpty=/etc/iptables/rules.v6
[Service]
Type=oneshot
diff --git a/projectroot/usr/lib/systemd/system/iptables.service b/projectroot/usr/lib/systemd/system/iptables.service
index fa4a8b367..29999628e 100644
--- a/projectroot/usr/lib/systemd/system/iptables.service
+++ b/projectroot/usr/lib/systemd/system/iptables.service
@@ -3,6 +3,8 @@ Description=Packet Filtering Framework
DefaultDependencies=no
After=systemd-sysctl.service
Before=sysinit.target
+# ensure, we are running before IPv6
+Before=ip6tables.service
ConditionFileNotEmpty=/etc/iptables/rules.v4
[Service]
Type=oneshot