[yast-commit] r56477 - in /branches/SuSE-Code-11-Branch/network: VERSION package/yast2-network.changes src/lan/address.ycp
Author: mzugec Date: Tue Mar 31 10:47:51 2009 New Revision: 56477 URL: http://svn.opensuse.org/viewcvs/yast?rev=56477&view=rev Log: tun/tap device - don't remove default gw (bnc#483233) Modified: branches/SuSE-Code-11-Branch/network/VERSION branches/SuSE-Code-11-Branch/network/package/yast2-network.changes branches/SuSE-Code-11-Branch/network/src/lan/address.ycp Modified: branches/SuSE-Code-11-Branch/network/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/VERSION?rev=56477&r1=56476&r2=56477&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/network/VERSION (original) +++ branches/SuSE-Code-11-Branch/network/VERSION Tue Mar 31 10:47:51 2009 @@ -1 +1 @@ -2.17.76 +2.17.77 Modified: branches/SuSE-Code-11-Branch/network/package/yast2-network.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/package/yast2-network.changes?rev=56477&r1=56476&r2=56477&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/network/package/yast2-network.changes (original) +++ branches/SuSE-Code-11-Branch/network/package/yast2-network.changes Tue Mar 31 10:47:51 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Mar 31 10:46:35 CEST 2009 - mzugec@suse.cz + +- tun/tap device - don't remove default gw (bnc#483233) +- 2.17.77 + +------------------------------------------------------------------- Sat Feb 28 16:32:25 CET 2009 - jsrain@suse.cz - fixed identification of qeth interfaces (bnc #479481) Modified: branches/SuSE-Code-11-Branch/network/src/lan/address.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-Branch/network/src/lan/address.ycp?rev=56477&r1=56476&r2=56477&view=diff ============================================================================== --- branches/SuSE-Code-11-Branch/network/src/lan/address.ycp (original) +++ branches/SuSE-Code-11-Branch/network/src/lan/address.ycp Tue Mar 31 10:47:51 2009 @@ -755,6 +755,13 @@ "IFCFGTYPE": LanItems::type, "IFCFGID": LanItems::device, ]; + + string drvtype = DriverType (settings["IFCFGTYPE"]:""); + + boolean is_ptp = drvtype == "ctc" || drvtype == "iucv"; + // TODO: dynamic for dummy. or add dummy from outside? + boolean no_dhcp = is_ptp || settings["IFCFGTYPE"]:"" == "dummy" || LanItems::alias != ""; + if (contains(["tun", "tap"], LanItems::type)) { settings = $[ @@ -765,16 +772,10 @@ "TUNNEL_SET_OWNER" : LanItems::tunnel_set_owner, "TUNNEL_SET_GROUP" : LanItems::tunnel_set_group ]; + } else { + if(settings["BOOTPROTO"]:"" == "static" && settings["IPADDR"]:"" == "" && !no_dhcp) settings["BOOTPROTO"] = "dhcp"; } - string drvtype = DriverType (settings["IFCFGTYPE"]:""); - - boolean is_ptp = drvtype == "ctc" || drvtype == "iucv"; - // TODO: dynamic for dummy. or add dummy from outside? - boolean no_dhcp = is_ptp || settings["IFCFGTYPE"]:"" == "dummy" || LanItems::alias != ""; - - if(settings["BOOTPROTO"]:"" == "static" && settings["IPADDR"]:"" == "" && !no_dhcp) settings["BOOTPROTO"] = "dhcp"; - // #65524 if (LanItems::operation == `add && force_static_ip) { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
mzugec@svn.opensuse.org