From 47632834efec87c8d9c3e658827137191052b697 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Wed, 22 Oct 2008 09:53:43 -1000 Subject: Do not write NM_CONTROLLED=yes to ifcfg files (#468028) nm-system-settings only reads NM_CONTROLLED=no to know to ignore a device. By default, it assumes control of all devices. --- network.py | 1 - 1 file changed, 1 deletion(-) diff --git a/network.py b/network.py index adefad896..b5b1590b7 100644 --- a/network.py +++ b/network.py @@ -545,7 +545,6 @@ class Network: searchLine = string.joinfields(self.domains, ' ') f.write("SEARCH=\"%s\"\n" % (searchLine,)) - f.write("NM_CONTROLLED=yes\n") f.close() os.chmod(newifcfg, 0644) -- cgit