Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/netifrc:master commit in: udev_helper/
Date: Sun, 31 May 2020 23:21:27
Message-Id: 1590967259.db98502979abd91749cdede8e096fe3b814441a7.robbat2@OpenRC
1 commit: db98502979abd91749cdede8e096fe3b814441a7
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 23:20:59 2020 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 23:20:59 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=db985029
7
8 udev_helper: recognize more interface types
9
10 Bug: https://bugs.gentoo.org/691372
11 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
12
13 udev_helper/net.sh | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/udev_helper/net.sh b/udev_helper/net.sh
17 index b15b187..f1c4f20 100644
18 --- a/udev_helper/net.sh
19 +++ b/udev_helper/net.sh
20 @@ -17,7 +17,7 @@ fi
21
22 # ignore interfaces that are registered after being "up" (?)
23 case ${IFACE} in
24 - ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*|br*)
25 + ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*|br*|macvtap*|ipvl*|vlan*|vxlan*|peth*|ifb*|veth*|gre*|vrf*)
26 exit 0 ;;
27 esac