diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-02-06 12:02:15 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-02-06 22:04:32 +0900 |
commit | e327272d795453f68a4c30ba21eb0e887516cf68 (patch) | |
tree | 749537753842e3bd7dd5276d01e557dfc1731ca5 /test/test-execute | |
parent | 2b3943a02b6088f999f9392cc9aa179c85958d8e (diff) | |
download | systemd-e327272d795453f68a4c30ba21eb0e887516cf68.tar.gz |
test-network: ignore tunnel devices automatically added by kernel
Fixes #10934.
Diffstat (limited to 'test/test-execute')
-rw-r--r-- | test/test-execute/exec-privatenetwork-yes.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-execute/exec-privatenetwork-yes.service b/test/test-execute/exec-privatenetwork-yes.service index ded8d55126..8f5cbadf04 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|ip6tnl0|ip6gre0)@.*):"' +ExecStart=/bin/sh -x -c '! ip link | grep -E "^[0-9]+: " | grep -Ev ": (lo|(erspan|gre|gretap|ip_vti|ip6_vti|ip6gre|ip6tnl|sit|tunl)0@.*):"' Type=oneshot PrivateNetwork=yes |