From ccf59288e83c3cebbed2e9f7c0cfc340f73ceff5 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Thu, 27 Jun 2019 14:59:42 -0700 Subject: [PATCH] adds udev rules to discourage NetworkManager from managing the interface --- print_udev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/print_udev.sh b/print_udev.sh index f58172f0..9eb57bc3 100755 --- a/print_udev.sh +++ b/print_udev.sh @@ -22,7 +22,7 @@ while read line ; do fi done #echo "Hi! $ifname has [$mac]" - echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="'$mac'", ATTR{dev_id}=="0x0", ATTR{type}=="1", NAME="'$ifname'"' + echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="'$mac'", ATTR{dev_id}=="0x0", ATTR{type}=="1", NAME="'$ifname'" ENV{NM_UNMANAGED}="1"' ;; *) #echo "IGNORING: $line"