From b2086b006baddd6f8a9b09c4cbff7c103ed04d42 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Thu, 3 Feb 2011 20:01:53 +0000 Subject: Keep UUID, NAME and LAST_CONNECT for NetworkManager to work correctly. Merge mdv commit 271837 --- lib/network/connection.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/network/connection.pm') diff --git a/lib/network/connection.pm b/lib/network/connection.pm index dd784b6..837ab97 100644 --- a/lib/network/connection.pm +++ b/lib/network/connection.pm @@ -151,6 +151,9 @@ sub load_interface_settings { $self->{control}{mtu} = $self->{ifcfg}{MTU}; $self->{control}{accounting} = $self->{ifcfg}{ACCOUNTING}; $self->{control}{nm_controlled} = $self->{ifcfg}{NM_CONTROLLED}; + $self->{control}{uuid} = $self->{ifcfg}{UUID}; + $self->{control}{name} = $self->{ifcfg}{NAME}; + $self->{control}{last_connect} = $self->{ifcfg}{LAST_CONNECT}; } #- override to return 1 if the connection network scan is slow @@ -261,6 +264,9 @@ sub build_ifcfg_settings { USERCTL => bool2yesno($self->{control}{userctl}), METRIC => $self->{control}{metric}, MTU => $self->{control}{mtu}, + UUID => $self->{control}{uuid}, + NAME => $self->{control}{name}, + LAST_CONNECT => $self->{control}{last_connect}, VPN_TYPE => defined $self->{control}{vpn} && $self->{control}{vpn}->get_type, VPN_NAME => defined $self->{control}{vpn} && $self->{control}{vpn}->get_name, #- FIXME: add MS_DNSx variables if DNS servers are specified -- cgit v1.2.1