From: Zbigniew Jędrzejewski-Szmek Date: Tue, 9 Oct 2018 12:08:09 +0000 (+0200) Subject: test-execute: filter out ip6tnl0@ and ip6gre0@ interfaces X-Git-Tag: v240~594^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a90c04b6b702fafd7b643be70d8fcb0c2e962d12;p=thirdparty%2Fsystemd.git test-execute: filter out ip6tnl0@ and ip6gre0@ interfaces Those interfaces are created automatically when ip6_tunnel and ip6_gre loaded. They break the test with exec-privatenetwork-yes.service. C.f. 6b08180ca6f1ceb913f6a69ffcaf96e9818fbdf5. --- diff --git a/test/test-execute/exec-privatenetwork-yes.service b/test/test-execute/exec-privatenetwork-yes.service index a38d24912fc..ded8d551263 100644 --- a/test/test-execute/exec-privatenetwork-yes.service +++ b/test/test-execute/exec-privatenetwork-yes.service @@ -2,6 +2,6 @@ Description=Test for PrivateNetwork [Service] -ExecStart=/bin/sh -x -c '! ip link | grep ": " | grep -Ev ": (lo|sit0@.*):"' +ExecStart=/bin/sh -x -c '! ip link | grep ": " | grep -Ev ": (lo|(sit0|ip6tnl0|ip6gre0)@.*):"' Type=oneshot PrivateNetwork=yes