summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-10-22 09:53:43 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-10-22 10:04:51 -1000
commit47632834efec87c8d9c3e658827137191052b697 (patch)
tree7d371a29d620ea0c232a6fcc002fbbc7b47af3be /network.py
parent11b1331a8acb49a20ab26a76c4481b16c9382c96 (diff)
downloadanaconda-47632834efec87c8d9c3e658827137191052b697.tar.gz
anaconda-47632834efec87c8d9c3e658827137191052b697.tar.xz
anaconda-47632834efec87c8d9c3e658827137191052b697.zip
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.
Diffstat (limited to 'network.py')
-rw-r--r--network.py1
1 files changed, 0 insertions, 1 deletions
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)