Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2012-08-04 13:42:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-network.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-network", Maintainer is "mvid...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes      
2012-07-30 09:49:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2012-08-04 13:42:55.000000000 +0200
@@ -1,0 +2,13 @@
+Mon Jul 30 12:44:37 UTC 2012 - mfi...@suse.com
+
+- bnc#766217 - Gateway IP address is invalid
+  added default '-' for Genmask and gateway fields
+- 2.24.2
+
+-------------------------------------------------------------------
+Wed Jul 25 08:09:48 UTC 2012 - mkube...@suse.cz
+
+- use "ip addr" and "ip route" for network test logs rather than
+  ifconfig and route
+
+-------------------------------------------------------------------

Old:
----
  yast2-network-2.24.1.tar.bz2

New:
----
  yast2-network-2.24.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-network.spec ++++++
--- /var/tmp/diff_new_pack.2NgBcQ/_old  2012-08-04 13:42:59.000000000 +0200
+++ /var/tmp/diff_new_pack.2NgBcQ/_new  2012-08-04 13:42:59.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-network
-Version:        2.24.1
+Version:        2.24.2
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-network-2.24.1.tar.bz2 -> yast2-network-2.24.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-2.24.1/VERSION 
new/yast2-network-2.24.2/VERSION
--- old/yast2-network-2.24.1/VERSION    2012-07-23 12:07:14.000000000 +0200
+++ new/yast2-network-2.24.2/VERSION    2012-07-30 14:44:20.000000000 +0200
@@ -1 +1 @@
-2.24.1
+2.24.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-2.24.1/src/installation/inst_do_net_test.ycp 
new/yast2-network-2.24.2/src/installation/inst_do_net_test.ycp
--- old/yast2-network-2.24.1/src/installation/inst_do_net_test.ycp      
2012-07-23 12:07:14.000000000 +0200
+++ new/yast2-network-2.24.2/src/installation/inst_do_net_test.ycp      
2012-07-30 14:51:37.000000000 +0200
@@ -237,16 +237,16 @@
     
        // label of combobox where the log is selected
        logs = add (logs, $[ `menuname : _("Kernel Network Interfaces"),
-                            `filename : "ifconfig.log" ]);
-       run_command = "/sbin/ifconfig > '" + String::Quote (logdir) + 
"/ifconfig.log'";
+                            `filename : "ip_addr.log" ]);
+       run_command = "/sbin/ip addr show > '" + String::Quote (logdir) + 
"/ip_addr.log'";
        ret_command = (integer) SCR::Execute (.target.bash, run_command,
                      $["LANG" : GetLanguageUTF8 ()]);
        if (ret_command != 0) y2error("Command '%1' failed -> %2", run_command, 
ret_command);
 
        // label of combobox where the log is selected
        logs = add (logs, $[ `menuname : _("Kernel Routing Table"),
-                            `filename : "route.log" ]);
-       run_command = "/sbin/route -n > '" + String::Quote (logdir) + 
"/route.log'";
+                            `filename : "ip_route.log" ]);
+       run_command = "/sbin/ip route show > '" + String::Quote (logdir) + 
"/ip_route.log'";
        ret_command = (integer) SCR::Execute (.target.bash, run_command,
                      $["LANG" : GetLanguageUTF8 ()]);
        if (ret_command != 0) y2error("Command '%1' failed -> %2", run_command, 
ret_command);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-2.24.1/src/modules/NetHwDetection.ycp 
new/yast2-network-2.24.2/src/modules/NetHwDetection.ycp
--- old/yast2-network-2.24.1/src/modules/NetHwDetection.ycp     2012-07-23 
12:07:14.000000000 +0200
+++ new/yast2-network-2.24.2/src/modules/NetHwDetection.ycp     2012-07-30 
14:51:37.000000000 +0200
@@ -147,14 +147,14 @@
        return false;
     }
 
-y2milestone("IFCONFIG1: %1", SCR::Execute(.target.bash_output, 
"/sbin/ifconfig"));
+y2milestone("IFCONFIG1: %1", SCR::Execute(.target.bash_output, "/sbin/ip addr 
show"));
     boolean ret = false;
     if(StartEthInterface()) {
        running = true;
        ret = true;
     }
 
-y2milestone("IFCONFIG2: %1", SCR::Execute(.target.bash_output, 
"/sbin/ifconfig"));
+y2milestone("IFCONFIG2: %1", SCR::Execute(.target.bash_output, "/sbin/ip addr 
show"));
     y2milestone("Detection start result: %1", ret);
     return ret;
 }
@@ -170,7 +170,7 @@
     }
     running = false;
 
-y2milestone("IFCONFIG3: %1", SCR::Execute(.target.bash_output, 
"/sbin/ifconfig"));
+y2milestone("IFCONFIG3: %1", SCR::Execute(.target.bash_output, "/sbin/ip addr 
show"));
 
     y2milestone("Detection stop ");
     return true;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-2.24.1/src/services/routing.ycp 
new/yast2-network-2.24.2/src/services/routing.ycp
--- old/yast2-network-2.24.1/src/services/routing.ycp   2012-07-23 
12:07:14.000000000 +0200
+++ new/yast2-network-2.24.2/src/services/routing.ycp   2012-07-30 
14:42:56.000000000 +0200
@@ -43,10 +43,10 @@
        `VBox(
            `HBox(
                `InputField(`id(`destination), `opt(`hstretch), 
_("&Destination"), entry[1]:""),
-               `InputField(`id(`genmask), `opt(`hstretch), _("Ge&nmask"), 
entry[3]:"")
+               `InputField(`id(`genmask), `opt(`hstretch), _("Ge&nmask"), 
entry[3]:"-")
                ),
            `HBox(
-               `InputField(`id(`gateway), `opt(`hstretch), _("&Gateway"), 
entry[2]:""),
+               `InputField(`id(`gateway), `opt(`hstretch), _("&Gateway"), 
entry[2]:"-"),
                `ComboBox(`id(`device), `opt(`editable, `hstretch), 
_("De&vice"), devs)
                ),
            /* ComboBox label */

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to