summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--lib/network/connection.pm3
2 files changed, 6 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9f50488..28b52a3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- do not write NM_CONTROLLED flag in configs if it's not been explicitly set.
+ This allows, e.g. NM to run on gnome live CD/DVDs. Drak tools will still
+ work fine when NM is not installed. mga#6675 mga#9261
+
2.11
- add minimal (i.e. installer) support for shorewall-ipv6 (mga#11928)
- drop shorewall 2->3 upgrade support
diff --git a/lib/network/connection.pm b/lib/network/connection.pm
index 5cab3ac..443c0e4 100644
--- a/lib/network/connection.pm
+++ b/lib/network/connection.pm
@@ -269,7 +269,8 @@ sub build_ifcfg_settings {
DEVICE => $self->get_interface,
ONBOOT => bool2yesno($self->{control}{onboot}),
ACCOUNTING => bool2yesno($self->{control}{accounting}),
- NM_CONTROLLED => bool2yesno($self->{control}{nm_controlled}),
+ # Only write NM_CONTROLLED if we absolutely know it's value
+ if_(defined $self->{control}{nm_controlled}, NM_CONTROLLED => bool2yesno($self->{control}{nm_controlled})),
USERCTL => bool2yesno($self->{control}{userctl}),
METRIC => $self->{control}{metric},
MTU => $self->{control}{mtu},