commit yast2-network for openSUSE:Factory

2020-10-23 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-10-23 12:20:15

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3463 (New)


Package is "yast2-network"

Fri Oct 23 12:20:15 2020 rev:435 rq:842818 version:4.3.27

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-10-18 16:20:28.760465669 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3463/yast2-network.changes
2020-10-23 12:20:47.792617466 +0200
@@ -1,0 +2,6 @@
+Tue Oct 20 13:03:00 UTC 2020 - Josef Reidinger 
+
+- fix crash when hostname file missing (bsc#1177904)
+- 4.3.27
+
+---

Old:

  yast2-network-4.3.26.tar.bz2

New:

  yast2-network-4.3.27.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.7mZKF9/_old  2020-10-23 12:20:49.736618836 +0200
+++ /var/tmp/diff_new_pack.7mZKF9/_new  2020-10-23 12:20:49.736618836 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.26
+Version:4.3.27
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.26.tar.bz2 -> yast2-network-4.3.27.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.26/package/yast2-network.changes 
new/yast2-network-4.3.27/package/yast2-network.changes
--- old/yast2-network-4.3.26/package/yast2-network.changes  2020-10-08 
16:19:16.0 +0200
+++ new/yast2-network-4.3.27/package/yast2-network.changes  2020-10-20 
15:18:08.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Oct 20 13:03:00 UTC 2020 - Josef Reidinger 
+
+- fix crash when hostname file missing (bsc#1177904)
+- 4.3.27
+
+---
 Wed Oct  7 11:45:04 UTC 2020 - Knut Anderssen 
 
 - Write hostname changes when modified through the 'dns' client
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.26/package/yast2-network.spec 
new/yast2-network-4.3.27/package/yast2-network.spec
--- old/yast2-network-4.3.26/package/yast2-network.spec 2020-10-08 
16:19:16.0 +0200
+++ new/yast2-network-4.3.27/package/yast2-network.spec 2020-10-20 
15:18:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.26
+Version:4.3.27
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.26/src/lib/y2network/widgets/boot_protocol.rb 
new/yast2-network-4.3.27/src/lib/y2network/widgets/boot_protocol.rb
--- old/yast2-network-4.3.26/src/lib/y2network/widgets/boot_protocol.rb 
2020-10-08 16:19:16.0 +0200
+++ new/yast2-network-4.3.27/src/lib/y2network/widgets/boot_protocol.rb 
2020-10-20 15:18:08.0 +0200
@@ -174,7 +174,7 @@
   one_ip = Yast::UI.QueryWidget(Id(:bootproto_ipaddr), :Value)
   if one_ip.empty?
 current_hostname = Yast::Hostname.MergeFQ(Yast::DNS.hostname, 
Yast::DNS.domain)
-unless current_hostname.empty? || (current_hostname == "localhost")
+if ![nil, "", "localhost"].include?(current_hostname)
   log.info "Presetting global hostname"
   Yast::UI.ChangeWidget(Id(:bootproto_hostname), :Value, 
current_hostname)
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.26/test/y2network/widgets/boot_protocol_test.rb 
new/yast2-network-4.3.27/test/y2network/widgets/boot_protocol_test.rb
--- old/yast2-network-4.3.26/test/y2network/widgets/boot_protocol_test.rb   
2020-10-08 16:19:16.0 +0200
+++ new/yast2-network-4.3.27/test/y2network/widgets/boot_protocol_test.rb   
2020-10-20 15:18:08.0 +0200
@@ -304,4 +304,22 @@
   end
 end
   end
+
+  describe "#handle" do
+context "switched to static boot protocol" do
+  let(:value) { "static" }
+
+  before do
+allow(Yast::UI).to receive(:QueryWidget).with(Id(:bootproto_ipaddr), 
:Value)
+  .and_return("")
+  end
+
+  it "does not propose hostname if current hostname is missing" do
+allow(Yast::DNS).to receive(:hostname).and_return(nil)
+
+expect(Yast::UI).to_not receive(:ChangeWidget)
+  .with(Id(:bootproto_hostname), :Value, anything)
+  end
+end
+  end
 end




commit yast2-network for openSUSE:Factory

2020-10-18 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-10-18 16:20:23

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3486 (New)


Package is "yast2-network"

Sun Oct 18 16:20:23 2020 rev:434 rq:840404 version:4.3.26

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-09-24 16:13:58.140882115 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3486/yast2-network.changes
2020-10-18 16:20:28.760465669 +0200
@@ -1,0 +2,28 @@
+Wed Oct  7 11:45:04 UTC 2020 - Knut Anderssen 
+
+- Write hostname changes when modified through the 'dns' client
+  (bsc#1177191).
+- 4.3.26
+
+---
+Mon Oct  5 11:28:46 UTC 2020 - Knut Anderssen 
+
+- Modified the way the current hostnames are (static & transient)
+  read and write (bsc#1173915)
+- 4.3.25
+
+---
+Mon Sep 28 13:44:08 UTC 2020 - Knut Anderssen 
+
+- Write the virtualization network configuration properly during an
+  autoinstallation (bsc#1177025)
+- 4.3.24
+
+---
+Thu Sep 24 15:20:15 UTC 2020 - Knut Anderssen 
+
+- Fixed initialization of the bridge STP configuration
+  (bsc#1176820)
+- 4.3.23
+
+---

Old:

  yast2-network-4.3.22.tar.bz2

New:

  yast2-network-4.3.26.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.XigcCo/_old  2020-10-18 16:20:30.384466392 +0200
+++ /var/tmp/diff_new_pack.XigcCo/_new  2020-10-18 16:20:30.384466392 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.22
+Version:4.3.26
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.22.tar.bz2 -> yast2-network-4.3.26.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.22/package/yast2-network.changes 
new/yast2-network-4.3.26/package/yast2-network.changes
--- old/yast2-network-4.3.22/package/yast2-network.changes  2020-09-21 
15:34:06.0 +0200
+++ new/yast2-network-4.3.26/package/yast2-network.changes  2020-10-08 
16:19:16.0 +0200
@@ -1,4 +1,32 @@
 ---
+Wed Oct  7 11:45:04 UTC 2020 - Knut Anderssen 
+
+- Write hostname changes when modified through the 'dns' client
+  (bsc#1177191).
+- 4.3.26
+
+---
+Mon Oct  5 11:28:46 UTC 2020 - Knut Anderssen 
+
+- Modified the way the current hostnames are (static & transient)
+  read and write (bsc#1173915)
+- 4.3.25
+
+---
+Mon Sep 28 13:44:08 UTC 2020 - Knut Anderssen 
+
+- Write the virtualization network configuration properly during an
+  autoinstallation (bsc#1177025)
+- 4.3.24
+
+---
+Thu Sep 24 15:20:15 UTC 2020 - Knut Anderssen 
+
+- Fixed initialization of the bridge STP configuration
+  (bsc#1176820)
+- 4.3.23
+
+---
 Mon Sep 21 13:15:39 UTC 2020 - Ladislav Slezák 
 
 - Fixed false error in the y2log (bsc#1176653)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.22/package/yast2-network.spec 
new/yast2-network-4.3.26/package/yast2-network.spec
--- old/yast2-network-4.3.22/package/yast2-network.spec 2020-09-21 
15:34:06.0 +0200
+++ new/yast2-network-4.3.26/package/yast2-network.spec 2020-10-08 
16:19:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.22
+Version:4.3.26
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.22/src/clients/dns.rb 
new/yast2-network-4.3.26/src/clients/dns.rb
--- old/yast2-network-4.3.22/src/clients/dns.rb 2020-09-21 15:34:06.0 
+0200
+++ new/yast2-network-4.3.26/src/clients/dns.rb 2020-10-08 16:19:16.0 
+0200
@@ -1,284 +1,3 @@
-# ***
-#
-# Copyright (c) 2012 Novell, Inc.
-# All Rights Reserved.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of version 2 of the GNU General Public License as
-# 

commit yast2-network for openSUSE:Factory

2020-09-24 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-09-24 16:13:19

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.4249 (New)


Package is "yast2-network"

Thu Sep 24 16:13:19 2020 rev:433 rq:835831 version:4.3.22

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-09-18 14:30:36.191423471 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.4249/yast2-network.changes
2020-09-24 16:13:58.140882115 +0200
@@ -1,0 +2,12 @@
+Mon Sep 21 13:15:39 UTC 2020 - Ladislav Slezák 
+
+- Fixed false error in the y2log (bsc#1176653)
+- 4.3.22
+
+---
+Mon Sep 21 07:58:22 UTC 2020 - Knut Anderssen 
+
+- Fix connection hostname initialization (bsc#1175579)
+- 4.3.21
+
+---

Old:

  yast2-network-4.3.20.tar.bz2

New:

  yast2-network-4.3.22.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.fq1Xmq/_old  2020-09-24 16:13:58.820882795 +0200
+++ /var/tmp/diff_new_pack.fq1Xmq/_new  2020-09-24 16:13:58.824882798 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.20
+Version:4.3.22
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.20.tar.bz2 -> yast2-network-4.3.22.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.20/package/yast2-network.changes 
new/yast2-network-4.3.22/package/yast2-network.changes
--- old/yast2-network-4.3.20/package/yast2-network.changes  2020-09-16 
09:25:56.0 +0200
+++ new/yast2-network-4.3.22/package/yast2-network.changes  2020-09-21 
15:34:06.0 +0200
@@ -1,4 +1,16 @@
 ---
+Mon Sep 21 13:15:39 UTC 2020 - Ladislav Slezák 
+
+- Fixed false error in the y2log (bsc#1176653)
+- 4.3.22
+
+---
+Mon Sep 21 07:58:22 UTC 2020 - Knut Anderssen 
+
+- Fix connection hostname initialization (bsc#1175579)
+- 4.3.21
+
+---
 Tue Sep 15 19:51:36 UTC 2020 - Knut Anderssen 
 
 - Infer the vlan_id from the interface file name when the attribute
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.20/package/yast2-network.spec 
new/yast2-network-4.3.22/package/yast2-network.spec
--- old/yast2-network-4.3.20/package/yast2-network.spec 2020-09-16 
09:25:56.0 +0200
+++ new/yast2-network-4.3.22/package/yast2-network.spec 2020-09-21 
15:34:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.20
+Version:4.3.22
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.20/src/lib/y2network/sysconfig/connection_config_readers/base.rb
 
new/yast2-network-4.3.22/src/lib/y2network/sysconfig/connection_config_readers/base.rb
--- 
old/yast2-network-4.3.20/src/lib/y2network/sysconfig/connection_config_readers/base.rb
  2020-09-16 09:25:56.0 +0200
+++ 
new/yast2-network-4.3.22/src/lib/y2network/sysconfig/connection_config_readers/base.rb
  2020-09-21 15:34:06.0 +0200
@@ -129,7 +129,9 @@
   return nil unless conn.ip
 
   Yast::Host.Read
-  Yast::Host.names(conn.ip.address.address.to_s).first
+  aliases = Yast::Host.names(conn.ip.address.address.to_s).first
+  # Use the fqdn when defined
+  aliases.to_s.split(" ").first
 end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.20/src/servers_non_y2/ag_udev_persistent 
new/yast2-network-4.3.22/src/servers_non_y2/ag_udev_persistent
--- old/yast2-network-4.3.20/src/servers_non_y2/ag_udev_persistent  
2020-09-16 09:25:56.0 +0200
+++ new/yast2-network-4.3.22/src/servers_non_y2/ag_udev_persistent  
2020-09-21 15:34:06.0 +0200
@@ -188,6 +188,14 @@
 sub Dir {
 }
 
+sub OtherCommand ()
+{
+my $class = shift;
+my $command = shift;
+y2warning ("OtherCommand ($command) not implemented in this agent");
+return undef;
+}
+
 package main;
 
 ag_udev_persistent->Run ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-network for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-09-18 14:28:20

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.4249 (New)


Package is "yast2-network"

Fri Sep 18 14:28:20 2020 rev:432 rq:834821 version:4.3.20

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-09-15 16:15:29.817868198 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.4249/yast2-network.changes
2020-09-18 14:30:36.191423471 +0200
@@ -1,0 +2,7 @@
+Tue Sep 15 19:51:36 UTC 2020 - Knut Anderssen 
+
+- Infer the vlan_id from the interface file name when the attribute
+  is not declared explicitly (bsc#1176575)
+- 4.3.20
+
+---

Old:

  yast2-network-4.3.19.tar.bz2

New:

  yast2-network-4.3.20.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.y1sXqR/_old  2020-09-18 14:30:39.591426895 +0200
+++ /var/tmp/diff_new_pack.y1sXqR/_new  2020-09-18 14:30:39.595426899 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.19
+Version:4.3.20
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.19.tar.bz2 -> yast2-network-4.3.20.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.19/package/yast2-network.changes 
new/yast2-network-4.3.20/package/yast2-network.changes
--- old/yast2-network-4.3.19/package/yast2-network.changes  2020-09-10 
13:39:04.0 +0200
+++ new/yast2-network-4.3.20/package/yast2-network.changes  2020-09-16 
09:25:56.0 +0200
@@ -1,4 +1,11 @@
 ---
+Tue Sep 15 19:51:36 UTC 2020 - Knut Anderssen 
+
+- Infer the vlan_id from the interface file name when the attribute
+  is not declared explicitly (bsc#1176575)
+- 4.3.20
+
+---
 Thu Sep 10 08:16:52 UTC 2020 - Knut Anderssen 
 
 - When proposing the virtualization network configuration, force a
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.19/package/yast2-network.spec 
new/yast2-network-4.3.20/package/yast2-network.spec
--- old/yast2-network-4.3.19/package/yast2-network.spec 2020-09-10 
13:39:04.0 +0200
+++ new/yast2-network-4.3.20/package/yast2-network.spec 2020-09-16 
09:25:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.19
+Version:4.3.20
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.19/src/lib/y2network/sysconfig/connection_config_readers/vlan.rb
 
new/yast2-network-4.3.20/src/lib/y2network/sysconfig/connection_config_readers/vlan.rb
--- 
old/yast2-network-4.3.19/src/lib/y2network/sysconfig/connection_config_readers/vlan.rb
  2020-09-10 13:39:04.0 +0200
+++ 
new/yast2-network-4.3.20/src/lib/y2network/sysconfig/connection_config_readers/vlan.rb
  2020-09-16 09:25:56.0 +0200
@@ -30,7 +30,14 @@
 # @see 
Y2Network::Sysconfig::ConnectionConfigReaders::Base#update_connection_config
 def update_connection_config(conn)
   conn.parent_device = file.etherdevice
-  conn.vlan_id = file.vlan_id
+  conn.vlan_id = vlan_id_for(file)
+end
+
+def vlan_id_for(file)
+  return file.vlan_id if file.vlan_id
+  return file.interface.gsub("vlan", "").to_i if 
file.interface.start_with?("vlan")
+
+  file.interface.split(".")[1].to_i
 end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.19/test/data/scr_read/etc/sysconfig/network/ifcfg-eth0.200
 
new/yast2-network-4.3.20/test/data/scr_read/etc/sysconfig/network/ifcfg-eth0.200
--- 
old/yast2-network-4.3.19/test/data/scr_read/etc/sysconfig/network/ifcfg-eth0.200
1970-01-01 01:00:00.0 +0100
+++ 
new/yast2-network-4.3.20/test/data/scr_read/etc/sysconfig/network/ifcfg-eth0.200
2020-09-16 09:25:56.0 +0200
@@ -0,0 +1,4 @@
+BOOTPROTO='static'
+IPADDR='192.168.200.20/24'
+STARTMODE='auto'
+ETHERDEVICE=eth0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.19/test/data/scr_read/etc/sysconfig/network/ifcfg-vlan100 

commit yast2-network for openSUSE:Factory

2020-09-15 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-09-15 16:15:26

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.4249 (New)


Package is "yast2-network"

Tue Sep 15 16:15:26 2020 rev:431 rq:833465 version:4.3.19

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-09-03 01:11:03.232404979 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.4249/yast2-network.changes
2020-09-15 16:15:29.817868198 +0200
@@ -1,0 +2,14 @@
+Thu Sep 10 08:16:52 UTC 2020 - Knut Anderssen 
+
+- When proposing the virtualization network configuration, force a
+  read of the current configuration in case that it is not present
+  (bsc#1176313)
+- 4.3.19
+
+---
+Tue Sep  8 09:23:06 CEST 2020 - sch...@suse.de
+
+- Using ":" in the autoyast(...) supplements (bsc#1146494).
+- 4.3.18
+
+---

Old:

  yast2-network-4.3.17.tar.bz2

New:

  yast2-network-4.3.19.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.wCDeie/_old  2020-09-15 16:15:31.577869827 +0200
+++ /var/tmp/diff_new_pack.wCDeie/_new  2020-09-15 16:15:31.581869831 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.17
+Version:4.3.19
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -73,7 +73,7 @@
 Obsoletes:  yast2-network-devel-doc <= 3.1.154
 Provides:   yast2-network-devel-doc = %{version}
 
-Supplements:autoyast(host,networking,remote)
+Supplements:autoyast(host:networking:remote)
 
 BuildArch:  noarch
 

++ yast2-network-4.3.17.tar.bz2 -> yast2-network-4.3.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.17/package/yast2-network.changes 
new/yast2-network-4.3.19/package/yast2-network.changes
--- old/yast2-network-4.3.17/package/yast2-network.changes  2020-09-01 
10:22:12.0 +0200
+++ new/yast2-network-4.3.19/package/yast2-network.changes  2020-09-10 
13:39:04.0 +0200
@@ -1,4 +1,18 @@
 ---
+Thu Sep 10 08:16:52 UTC 2020 - Knut Anderssen 
+
+- When proposing the virtualization network configuration, force a
+  read of the current configuration in case that it is not present
+  (bsc#1176313)
+- 4.3.19
+
+---
+Tue Sep  8 09:23:06 CEST 2020 - sch...@suse.de
+
+- Using ":" in the autoyast(...) supplements (bsc#1146494).
+- 4.3.18
+
+---
 Wed Aug 26 12:35:44 UTC 2020 - Imobach Gonzalez Sosa 
 
 - Unify profile element paths (bsc#1175680).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.17/package/yast2-network.spec 
new/yast2-network-4.3.19/package/yast2-network.spec
--- old/yast2-network-4.3.17/package/yast2-network.spec 2020-09-01 
10:22:12.0 +0200
+++ new/yast2-network-4.3.19/package/yast2-network.spec 2020-09-10 
13:39:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.17
+Version:4.3.19
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -73,7 +73,7 @@
 Obsoletes:  yast2-network-devel-doc <= 3.1.154
 Provides:   yast2-network-devel-doc = %{version}
 
-Supplements:autoyast(host,networking,remote)
+Supplements:autoyast(host:networking:remote)
 
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.17/src/modules/Lan.rb 
new/yast2-network-4.3.19/src/modules/Lan.rb
--- old/yast2-network-4.3.17/src/modules/Lan.rb 2020-09-01 10:22:12.0 
+0200
+++ new/yast2-network-4.3.19/src/modules/Lan.rb 2020-09-10 13:39:04.0 
+0200
@@ -651,6 +651,7 @@
 end
 
 def ProposeVirtualized
+  read_config unless yast_config
   Y2Network::VirtualizationConfig.new(yast_config).create
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.17/test/lan_test.rb 
new/yast2-network-4.3.19/test/lan_test.rb
--- old/yast2-network-4.3.17/test/lan_test.rb   2020-09-01 10:22:12.0 
+0200
+++ new/yast2-network-4.3.19/test/lan_test.rb   2020-09-10 13:39:04.0 
+0200
@@ -322,11 +322,20 @@
 
   describe "#ProposeVirtualized" do
 let(:yast_config) { 

commit yast2-network for openSUSE:Factory

2020-09-02 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-09-03 01:10:10

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3399 (New)


Package is "yast2-network"

Thu Sep  3 01:10:10 2020 rev:430 rq:831002 version:4.3.17

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-07-30 10:00:29.751235380 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3399/yast2-network.changes
2020-09-03 01:11:03.232404979 +0200
@@ -1,0 +2,14 @@
+Wed Aug 26 12:35:44 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Unify profile element paths (bsc#1175680).
+- 4.3.17
+
+---
+Tue Aug 11 12:13:34 CEST 2020 - sch...@suse.de
+
+- AutoYaST: Added supplements: autoyast(host,networking,remote)
+  into the spec file in order to install this packages if the
+  section has been defined in the AY configuration file (bsc#1146494).
+- 4.3.16
+
+---

Old:

  yast2-network-4.3.15.tar.bz2

New:

  yast2-network-4.3.17.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.73VHH3/_old  2020-09-03 01:11:04.776405493 +0200
+++ /var/tmp/diff_new_pack.73VHH3/_new  2020-09-03 01:11:04.780405495 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   yast2-network
-Version:4.3.15
+Version:4.3.17
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -33,8 +33,9 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# NetworkService.use
-BuildRequires:  yast2 >= 4.3.9
+# AutoYaST ElementPath class
+BuildRequires:  yast2 >= 4.3.20
+
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -48,8 +49,8 @@
 Requires:   sysconfig >= 0.80.0
 Requires:   yast2-proxy
 Requires:   yast2-storage-ng
-# NetworkService.use
-Requires:   yast2 >= 4.3.9
+# AutoYaST ElementPath class
+Requires:   yast2 >= 4.3.20
 # Packages::vnc_packages
 Requires:   augeas-lenses
 Requires:   yast2-packager >= 4.0.18
@@ -72,6 +73,8 @@
 Obsoletes:  yast2-network-devel-doc <= 3.1.154
 Provides:   yast2-network-devel-doc = %{version}
 
+Supplements:autoyast(host,networking,remote)
+
 BuildArch:  noarch
 
 %build

++ yast2-network-4.3.15.tar.bz2 -> yast2-network-4.3.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.15/package/yast2-network.changes 
new/yast2-network-4.3.17/package/yast2-network.changes
--- old/yast2-network-4.3.15/package/yast2-network.changes  2020-07-29 
13:04:27.0 +0200
+++ new/yast2-network-4.3.17/package/yast2-network.changes  2020-09-01 
10:22:12.0 +0200
@@ -1,4 +1,18 @@
 ---
+Wed Aug 26 12:35:44 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Unify profile element paths (bsc#1175680).
+- 4.3.17
+
+---
+Tue Aug 11 12:13:34 CEST 2020 - sch...@suse.de
+
+- AutoYaST: Added supplements: autoyast(host,networking,remote)
+  into the spec file in order to install this packages if the
+  section has been defined in the AY configuration file (bsc#1146494).
+- 4.3.16
+
+---
 Wed Jul 29 10:47:01 UTC 2020 - Imobach Gonzalez Sosa 
 
 - AutoYaST: do not crash when the  section is present
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.15/package/yast2-network.spec 
new/yast2-network-4.3.17/package/yast2-network.spec
--- old/yast2-network-4.3.15/package/yast2-network.spec 2020-07-29 
13:04:27.0 +0200
+++ new/yast2-network-4.3.17/package/yast2-network.spec 2020-09-01 
10:22:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.15
+Version:4.3.17
 Release:0
 

commit yast2-network for openSUSE:Factory

2020-07-30 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-07-30 10:00:14

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3592 (New)


Package is "yast2-network"

Thu Jul 30 10:00:14 2020 rev:429 rq:823372 version:4.3.15

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-07-21 15:48:33.988160370 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3592/yast2-network.changes
2020-07-30 10:00:29.751235380 +0200
@@ -1,0 +2,14 @@
+Wed Jul 29 10:47:01 UTC 2020 - Imobach Gonzalez Sosa 
+
+- AutoYaST: do not crash when the  section is present
+  (bsc#1174643).
+- 4.3.15
+
+---
+Tue Jul 28 08:45:12 UTC 2020 - Knut Anderssen 
+
+- Do not crash when configuring an IPv6 route through AutoYaST
+  (bsc#1174353)
+- 4.3.14
+
+---

Old:

  yast2-network-4.3.13.tar.bz2

New:

  yast2-network-4.3.15.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.XPdEIN/_old  2020-07-30 10:00:30.703235949 +0200
+++ /var/tmp/diff_new_pack.XPdEIN/_new  2020-07-30 10:00:30.703235949 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.13
+Version:4.3.15
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.13.tar.bz2 -> yast2-network-4.3.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.13/doc/autoinstallation.md 
new/yast2-network-4.3.15/doc/autoinstallation.md
--- old/yast2-network-4.3.13/doc/autoinstallation.md2020-07-17 
14:19:09.0 +0200
+++ new/yast2-network-4.3.15/doc/autoinstallation.md2020-07-29 
13:04:27.0 +0200
@@ -1,47 +1,73 @@
-Introduction
-
+# Networking Configuration During Autoinstallation
 
-A regular installation of SUSE Linux Enterprise Server 15 SP2 is performed in 
a single stage. The auto-installation process, however, has been divided in two 
stages. (see 
https://documentation.suse.com/sles/15-SP1/single-html/SLES-autoyast/#overviewandconcept
 for further details)
+## About This Document
 
-Thus, **before SLE-15-SP3**, the proper configuration of the network according 
to the given profile was done during the `configuration stage`, more commonly 
known as the 'second stage' of the auto-installation.
+Since SUSE Linux Enterprise 12, the manual installation is performed in a 
single stage. However, the
+autoinstallation process is still divided in two different stages (see
+https://documentation.suse.com/sles/15-SP1/single-html/SLES-autoyast/#overviewandconcept
 for further
+details).
 
-There has been some effort trying to move the network configuration logic to 
the `first stage` but, that is something that was only partially addressed.
+Thus, **before SLE-15-SP3**, the proper configuration of the network according 
to the given profile
+was done during the *configuration stage*, more commonly known as the *second 
stage* of the
+autoinstallation.
 
-The idea is, that, **since SLE-15-SP3**, the AutoYaST network configuration, 
by default, will be done during the `first stage`, and the networking section 
will be removed completely from the profile in order to not call the lan auto 
client in the second stage in case of enabled.
+**Since SLE-15-SP3**, the AutoYaST network configuration takes place during 
the *first stage*, removing
+the networking section from the profile so it is not processed during the 
second stage anymore. 
 
-> **Note**: An option to explicitly force the configuration of the network 
during the `second stage` is expected to be added, but it is still pending.
+> **Note**: An option to explicitly force the configuration of the network 
during the `second stage`
+> is expected to be added, but it is still pending.
 
-First Stage

+## Network Configuration Overview
 
-The network configuration for the first stage currently defined in the control
-file takes part in these clients (**inst_autoinit**, **inst_autosetup** and
-**inst_finish**).
+There are two different aspects of the network configuration that we should 
bear in mind when trying
+to understand how AutoYaST sets up the network. The first is *which 
configuration* is going to be used
+and the second is *when it gets applied*.
 
-- **inst_autoinit:** Autoinit will call iSCSI or FCOE clients if they are
-  enabled in Linuxrc and will try to fetch and process the profile.
+- Which configuration?
+  - Keep the configuration from _Linuxrc_ 

commit yast2-network for openSUSE:Factory

2020-07-21 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-07-21 15:46:45

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3592 (New)


Package is "yast2-network"

Tue Jul 21 15:46:45 2020 rev:428 rq:821504 version:4.3.13

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-07-03 00:44:14.969907803 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3592/yast2-network.changes
2020-07-21 15:48:33.988160370 +0200
@@ -1,0 +2,15 @@
+Thu Jul 16 08:45:00 UTC 2020 - Knut Anderssen 
+
+- Permit to write networking config changes without touching the
+  service and other components like the firewall (bsc#1173298)
+- Permit dot characters in the hostname allowing to specify it as
+  a FQDN (bsc#1173298)
+- 4.3.13
+
+---
+Wed Jul 15 15:10:34 UTC 2020 - Josef Reidinger 
+
+- Do not use Profile.current (bsc#1174173)
+- 4.3.12
+
+---

Old:

  yast2-network-4.3.11.tar.bz2

New:

  yast2-network-4.3.13.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.NiEooY/_old  2020-07-21 15:48:35.024161651 +0200
+++ /var/tmp/diff_new_pack.NiEooY/_new  2020-07-21 15:48:35.028161656 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.11
+Version:4.3.13
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -66,6 +66,9 @@
 # carrier detection
 Conflicts:  yast2-core < 2.10.6
 
+# new calls in AutoinstGeneral
+Conflicts:  autoyast2 < 4.3.23
+
 Obsoletes:  yast2-network-devel-doc <= 3.1.154
 Provides:   yast2-network-devel-doc = %{version}
 

++ yast2-network-4.3.11.tar.bz2 -> yast2-network-4.3.13.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.11/package/yast2-network.changes 
new/yast2-network-4.3.13/package/yast2-network.changes
--- old/yast2-network-4.3.11/package/yast2-network.changes  2020-07-01 
11:51:00.0 +0200
+++ new/yast2-network-4.3.13/package/yast2-network.changes  2020-07-17 
14:19:09.0 +0200
@@ -1,4 +1,19 @@
 ---
+Thu Jul 16 08:45:00 UTC 2020 - Knut Anderssen 
+
+- Permit to write networking config changes without touching the
+  service and other components like the firewall (bsc#1173298)
+- Permit dot characters in the hostname allowing to specify it as
+  a FQDN (bsc#1173298)
+- 4.3.13
+
+---
+Wed Jul 15 15:10:34 UTC 2020 - Josef Reidinger 
+
+- Do not use Profile.current (bsc#1174173)
+- 4.3.12
+
+---
 Wed Jul 01 08:52:44 UTC 2020 - Knut Anderssen 
 
 - Do not remove automatically aliases from /etc/hosts during an
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.11/package/yast2-network.spec 
new/yast2-network-4.3.13/package/yast2-network.spec
--- old/yast2-network-4.3.11/package/yast2-network.spec 2020-07-01 
11:51:00.0 +0200
+++ new/yast2-network-4.3.13/package/yast2-network.spec 2020-07-17 
14:19:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.11
+Version:4.3.13
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -66,6 +66,9 @@
 # carrier detection
 Conflicts:  yast2-core < 2.10.6
 
+# new calls in AutoinstGeneral
+Conflicts:  autoyast2 < 4.3.23
+
 Obsoletes:  yast2-network-devel-doc <= 3.1.154
 Provides:   yast2-network-devel-doc = %{version}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.11/src/include/network/services/dns.rb 
new/yast2-network-4.3.13/src/include/network/services/dns.rb
--- old/yast2-network-4.3.11/src/include/network/services/dns.rb
2020-07-01 11:51:00.0 +0200
+++ new/yast2-network-4.3.13/src/include/network/services/dns.rb
2020-07-17 14:19:09.0 +0200
@@ -63,7 +63,7 @@
   "label" => _("Static H"),
   "opt"   => [],
   "help"  => Ops.get_string(@help, "hostname_global", ""),
-  "valid_chars"   => Hostname.ValidChars,
+  "valid_chars"   => Yast::Hostname.ValidCharsDomain,
   "validate_type" => :function_no_popup,
   "validate_function" => fun_ref(

commit yast2-network for openSUSE:Factory

2020-07-02 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-07-03 00:44:11

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3060 (New)


Package is "yast2-network"

Fri Jul  3 00:44:11 2020 rev:427 rq:818067 version:4.3.11

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-06-27 23:22:14.797756462 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3060/yast2-network.changes
2020-07-03 00:44:14.969907803 +0200
@@ -1,0 +2,8 @@
+Wed Jul 01 08:52:44 UTC 2020 - Knut Anderssen 
+
+- Do not remove automatically aliases from /etc/hosts during an
+  autoinstallation (bsc#1173213)
+- Parse correctly udev rules keys using underscores (bsc#1167256)
+- 4.3.11
+
+---

Old:

  yast2-network-4.3.10.tar.bz2

New:

  yast2-network-4.3.11.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.rinXV4/_old  2020-07-03 00:44:15.749910189 +0200
+++ /var/tmp/diff_new_pack.rinXV4/_new  2020-07-03 00:44:15.753910201 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.10
+Version:4.3.11
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.10.tar.bz2 -> yast2-network-4.3.11.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.10/package/yast2-network.changes 
new/yast2-network-4.3.11/package/yast2-network.changes
--- old/yast2-network-4.3.10/package/yast2-network.changes  2020-06-26 
10:09:04.0 +0200
+++ new/yast2-network-4.3.11/package/yast2-network.changes  2020-07-01 
11:51:00.0 +0200
@@ -1,4 +1,12 @@
 ---
+Wed Jul 01 08:52:44 UTC 2020 - Knut Anderssen 
+
+- Do not remove automatically aliases from /etc/hosts during an
+  autoinstallation (bsc#1173213)
+- Parse correctly udev rules keys using underscores (bsc#1167256)
+- 4.3.11
+
+---
 Fri Jun 26 08:00:33 UTC 2020 - Knut Anderssen 
 
 - AutoYaST schema: add the setup_before_proposal element to the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.10/package/yast2-network.spec 
new/yast2-network-4.3.11/package/yast2-network.spec
--- old/yast2-network-4.3.10/package/yast2-network.spec 2020-06-26 
10:09:04.0 +0200
+++ new/yast2-network-4.3.11/package/yast2-network.spec 2020-07-01 
11:51:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.10
+Version:4.3.11
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.10/src/lib/y2network/sysconfig/connection_config_writer.rb
 
new/yast2-network-4.3.11/src/lib/y2network/sysconfig/connection_config_writer.rb
--- 
old/yast2-network-4.3.10/src/lib/y2network/sysconfig/connection_config_writer.rb
2020-06-26 10:09:04.0 +0200
+++ 
new/yast2-network-4.3.11/src/lib/y2network/sysconfig/connection_config_writer.rb
2020-07-01 11:51:00.0 +0200
@@ -21,6 +21,7 @@
 require "y2network/sysconfig/routes_file"
 
 Yast.import "Host"
+Yast.import "Mode"
 
 module Y2Network
   module Sysconfig
@@ -53,7 +54,10 @@
   def remove(conn)
 ifcfg = Y2Network::Sysconfig::InterfaceFile.find(conn.interface)
 ifcfg&.remove
-Yast::Host.remove_ip(conn.ip.address.address.to_s) if conn.ip
+# During an autoinstallation do not remove /etc/hosts entries
+# associated with the static IP address (bsc#1173213).
+# The hook or original behavior was introduced because of (bsc#951330)
+Yast::Host.remove_ip(conn.ip.address.address.to_s) if !Yast::Mode.auto 
&& conn.ip
   end
 
 private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.3.10/src/lib/y2network/udev_rule_part.rb 
new/yast2-network-4.3.11/src/lib/y2network/udev_rule_part.rb
--- old/yast2-network-4.3.10/src/lib/y2network/udev_rule_part.rb
2020-06-26 10:09:04.0 +0200
+++ new/yast2-network-4.3.11/src/lib/y2network/udev_rule_part.rb
2020-07-01 11:51:00.0 +0200
@@ -27,7 +27,7 @@
   class UdevRulePart
 include Yast::Logger
 # Regular expression to match a udev rule part
-PART_REGEXP = 
Regexp.new("\\A(?[A-Za-z\{\}]+)(?[^\"]+)\"(?.+)\"\\Z")

commit yast2-network for openSUSE:Factory

2020-06-27 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-06-27 23:22:12

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3060 (New)


Package is "yast2-network"

Sat Jun 27 23:22:12 2020 rev:426 rq:817203 version:4.3.10

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-06-14 18:15:04.150795199 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3060/yast2-network.changes
2020-06-27 23:22:14.797756462 +0200
@@ -1,0 +2,34 @@
+Fri Jun 26 08:00:33 UTC 2020 - Knut Anderssen 
+
+- AutoYaST schema: add the setup_before_proposal element to the
+  schema (bsc#1171922)
+- 4.3.10
+
+---
+Wed Jun 24 11:52:46 UTC 2020 - Josef Reidinger 
+
+- Do not export network when not requested (bsc#1172552)
+- 4.3.9
+
+---
+Fri Jun 19 18:24:34 UTC 2020 - Knut Anderssen 
+
+- Do not export any settings when NetworkManager is the network
+  backend (bsc#1172822).
+- 4.3.8
+
+---
+Fri Jun 19 08:52:54 UTC 2020 - Martin Vidner 
+
+- Save inst-sys memory by ending ag_udev_persistent after use
+  (bsc#1172139).
+- 4.3.7
+
+---
+Mon Jun 15 11:53:03 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Do not export interfaces  section when there are no
+  aliases to export (bsc#1172922).
+- 4.3.6
+
+---

Old:

  yast2-network-4.3.5.tar.bz2

New:

  yast2-network-4.3.10.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.6nKegG/_old  2020-06-27 23:22:15.877760014 +0200
+++ /var/tmp/diff_new_pack.6nKegG/_new  2020-06-27 23:22:15.881760026 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.5
+Version:4.3.10
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -33,8 +33,8 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# AutoYaST issue handling
-BuildRequires:  yast2 >= 4.3.3
+# NetworkService.use
+BuildRequires:  yast2 >= 4.3.9
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -48,8 +48,8 @@
 Requires:   sysconfig >= 0.80.0
 Requires:   yast2-proxy
 Requires:   yast2-storage-ng
-# AutoYaST issue handling
-Requires:   yast2 >= 4.3.2
+# NetworkService.use
+Requires:   yast2 >= 4.3.9
 # Packages::vnc_packages
 Requires:   augeas-lenses
 Requires:   yast2-packager >= 4.0.18

++ yast2-network-4.3.5.tar.bz2 -> yast2-network-4.3.10.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.5/package/yast2-network.changes 
new/yast2-network-4.3.10/package/yast2-network.changes
--- old/yast2-network-4.3.5/package/yast2-network.changes   2020-06-11 
16:13:54.0 +0200
+++ new/yast2-network-4.3.10/package/yast2-network.changes  2020-06-26 
10:09:04.0 +0200
@@ -1,4 +1,38 @@
 ---
+Fri Jun 26 08:00:33 UTC 2020 - Knut Anderssen 
+
+- AutoYaST schema: add the setup_before_proposal element to the
+  schema (bsc#1171922)
+- 4.3.10
+
+---
+Wed Jun 24 11:52:46 UTC 2020 - Josef Reidinger 
+
+- Do not export network when not requested (bsc#1172552)
+- 4.3.9
+
+---
+Fri Jun 19 18:24:34 UTC 2020 - Knut Anderssen 
+
+- Do not export any settings when NetworkManager is the network
+  backend (bsc#1172822).
+- 4.3.8
+
+---
+Fri Jun 19 08:52:54 UTC 2020 - Martin Vidner 
+
+- Save inst-sys memory by ending ag_udev_persistent after use
+  (bsc#1172139).
+- 4.3.7
+
+---
+Mon Jun 15 11:53:03 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Do not export interfaces  section when there are no
+  aliases to export (bsc#1172922).
+- 4.3.6
+
+---
 Thu Jun 11 08:24:34 UTC 2020 - Knut Anderssen 
 
 - Try to install the wireless-tools package when the package is
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.5/package/yast2-network.spec 

commit yast2-network for openSUSE:Factory

2020-06-14 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-06-14 18:14:59

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3606 (New)


Package is "yast2-network"

Sun Jun 14 18:14:59 2020 rev:425 rq:813549 version:4.3.5

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-06-10 00:40:10.393676317 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3606/yast2-network.changes
2020-06-14 18:15:04.150795199 +0200
@@ -1,0 +2,13 @@
+Thu Jun 11 08:24:34 UTC 2020 - Knut Anderssen 
+
+- Try to install the wireless-tools package when the package is
+  not installed and the wifi networks are scanned (bsc#1168479)
+- 4.3.5
+
+---
+Wed Jun 10 11:10:29 UTC 2020 - José Iván López González 
+
+- Avoid error when accessing to Bond Slaves in s390 (bsc#1172444).
+- 4.3.4
+
+---

Old:

  yast2-network-4.3.3.tar.bz2

New:

  yast2-network-4.3.5.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.D3EXaT/_old  2020-06-14 18:15:05.262798932 +0200
+++ /var/tmp/diff_new_pack.D3EXaT/_new  2020-06-14 18:15:05.262798932 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.3
+Version:4.3.5
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.3.3.tar.bz2 -> yast2-network-4.3.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.3/package/yast2-network.changes 
new/yast2-network-4.3.5/package/yast2-network.changes
--- old/yast2-network-4.3.3/package/yast2-network.changes   2020-06-08 
20:35:38.0 +0200
+++ new/yast2-network-4.3.5/package/yast2-network.changes   2020-06-11 
16:13:54.0 +0200
@@ -1,4 +1,17 @@
 ---
+Thu Jun 11 08:24:34 UTC 2020 - Knut Anderssen 
+
+- Try to install the wireless-tools package when the package is
+  not installed and the wifi networks are scanned (bsc#1168479)
+- 4.3.5
+
+---
+Wed Jun 10 11:10:29 UTC 2020 - José Iván López González 
+
+- Avoid error when accessing to Bond Slaves in s390 (bsc#1172444).
+- 4.3.4
+
+---
 Mon Jun  8 08:15:26 UTC 2020 - Knut Anderssen 
 
 - AutoYaST: Udev rules are written or copied to the target system
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.3/package/yast2-network.spec 
new/yast2-network-4.3.5/package/yast2-network.spec
--- old/yast2-network-4.3.3/package/yast2-network.spec  2020-06-08 
20:35:38.0 +0200
+++ new/yast2-network-4.3.5/package/yast2-network.spec  2020-06-11 
16:13:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.3.3
+Version:4.3.5
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -73,7 +73,7 @@
 
 %build
 
-%description 
+%description
 This package contains the YaST2 component for network configuration.
 
 %prep
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.3.3/src/include/network/lan/s390.rb 
new/yast2-network-4.3.5/src/include/network/lan/s390.rb
--- old/yast2-network-4.3.3/src/include/network/lan/s390.rb 2020-06-08 
20:35:38.0 +0200
+++ new/yast2-network-4.3.5/src/include/network/lan/s390.rb 2020-06-11 
16:13:54.0 +0200
@@ -1,4 +1,4 @@
-# Copyright (c) [2019] SUSE LLC
+# Copyright (c) [2019-2020] SUSE LLC
 #
 # All Rights Reserved.
 #
@@ -24,14 +24,15 @@
 
 def initialize_network_lan_s390(_include_target)
   Yast.import "FileUtils"
+  Yast.import "Arch"
 end
 
 # Checks if driver was successfully loaded for particular device.
 def s390_DriverLoaded(devname)
-  return false if !Arch.s390
+  return false if !Yast::Arch.s390
   return false if devname.empty?
 
-  FileUtils.IsDirectory("#{SYS_DIR}/#{devname}") == true
+  Yast::FileUtils.IsDirectory("#{SYS_DIR}/#{devname}") == true
 end
 
 # Reads particular qeth attribute and returns its value as a string.
@@ -41,14 +42,14 @@
 def s390_ReadQethAttribute(devname, attrib)
   return nil if !s390_DriverLoaded(devname)
 
-  result = Convert.to_string(
-SCR.Read(
-  path(".target.string"),
-  

commit yast2-network for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-06-10 00:39:55

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3606 (New)


Package is "yast2-network"

Wed Jun 10 00:39:55 2020 rev:424 rq:812715 version:4.3.3

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-05-15 23:49:34.041226270 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3606/yast2-network.changes
2020-06-10 00:40:10.393676317 +0200
@@ -1,0 +2,23 @@
+Mon Jun  8 08:15:26 UTC 2020 - Knut Anderssen 
+
+- AutoYaST: Udev rules are written or copied to the target system
+  properly when defined in the profile (bsc#1169663).
+- AutoYaST: Fixed the copy or merge of the linuxrc interfaces
+  configuration when the installation network configuration is
+  selected to be kept.
+- 4.3.3
+
+---
+Wed May 20 14:07:13 UTC 2020 - sch...@suse.de
+
+- AutoYaST: Cleanup/improve issue handling (bsc#1171335).
+- 4.3.2
+
+---
+Wed May 20 13:07:13 UTC 2020 - Knut Anderssen 
+
+- AutoYaST: Adapted the module to handle a complete network
+  configuration during the first stage (bsc#1171922)
+- 4.3.1
+
+---

Old:

  yast2-network-4.3.0.tar.bz2

New:

  yast2-network-4.3.3.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Kinug7/_old  2020-06-10 00:40:11.537679317 +0200
+++ /var/tmp/diff_new_pack.Kinug7/_new  2020-06-10 00:40:11.541679327 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   yast2-network
-Version:4.3.0
+Version:4.3.3
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
 Group:  System/YaST
-Url:https://github.com/yast/yast-network
+URL:https://github.com/yast/yast-network
 
 Source0:%{name}-%{version}.tar.bz2
 
@@ -33,8 +33,8 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# CFA::SysctlConfig
-BuildRequires:  yast2 >= 4.2.67
+# AutoYaST issue handling
+BuildRequires:  yast2 >= 4.3.3
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -48,8 +48,8 @@
 Requires:   sysconfig >= 0.80.0
 Requires:   yast2-proxy
 Requires:   yast2-storage-ng
-# CFA::SysctlConfig 
-Requires:   yast2 >= 4.2.67
+# AutoYaST issue handling
+Requires:   yast2 >= 4.3.2
 # Packages::vnc_packages
 Requires:   augeas-lenses
 Requires:   yast2-packager >= 4.0.18

++ yast2-network-4.3.0.tar.bz2 -> yast2-network-4.3.3.tar.bz2 ++
 2550 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2020-05-15 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-05-15 23:49:32

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.2738 (New)


Package is "yast2-network"

Fri May 15 23:49:32 2020 rev:423 rq:802988 version:4.3.0

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-04-25 20:21:01.225118378 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.2738/yast2-network.changes
2020-05-15 23:49:34.041226270 +0200
@@ -1,0 +2,7 @@
+Tue May 12 13:08:03 UTC 2020 - Josef Reidinger 
+
+- Autoyast schema: Allow optional types for string and map objects
+  (bsc#1170886)
+- 4.3.0
+
+---

Old:

  yast2-network-4.2.66.tar.bz2

New:

  yast2-network-4.3.0.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.1dpnbL/_old  2020-05-15 23:49:35.289228674 +0200
+++ /var/tmp/diff_new_pack.1dpnbL/_new  2020-05-15 23:49:35.293228682 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.66
+Version:4.3.0
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.66.tar.bz2 -> yast2-network-4.3.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.66/package/yast2-network.changes 
new/yast2-network-4.3.0/package/yast2-network.changes
--- old/yast2-network-4.2.66/package/yast2-network.changes  2020-04-24 
12:58:36.0 +0200
+++ new/yast2-network-4.3.0/package/yast2-network.changes   2020-05-12 
15:36:03.0 +0200
@@ -1,4 +1,11 @@
 ---
+Tue May 12 13:08:03 UTC 2020 - Josef Reidinger 
+
+- Autoyast schema: Allow optional types for string and map objects
+  (bsc#1170886)
+- 4.3.0
+
+---
 Thu Apr 16 07:19:26 UTC 2020 - Knut Anderssen 
 
 - Do not try to install kernel packages anymore since ISDN support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.66/package/yast2-network.spec 
new/yast2-network-4.3.0/package/yast2-network.spec
--- old/yast2-network-4.2.66/package/yast2-network.spec 2020-04-24 
12:58:36.0 +0200
+++ new/yast2-network-4.3.0/package/yast2-network.spec  2020-05-12 
15:36:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.66
+Version:4.3.0
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.66/src/autoyast-rnc/host.rnc 
new/yast2-network-4.3.0/src/autoyast-rnc/host.rnc
--- old/yast2-network-4.2.66/src/autoyast-rnc/host.rnc  2020-04-24 
12:58:36.0 +0200
+++ new/yast2-network-4.3.0/src/autoyast-rnc/host.rnc   2020-05-12 
15:36:03.0 +0200
@@ -1,14 +1,15 @@
 default namespace = "http://www.suse.com/1.0/yast2ns;
 namespace config = "http://www.suse.com/1.0/configns;
 namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0;
-# These currently conflict with the including files
-# which would need adjustments
-#include "common.rnc"
+
+include "common.rnc"
+
 ## to be overriden if included
 #start = element profile { host }
 
 host =
   element host {
+MAP,
 hosts?
   }
 
@@ -20,11 +21,14 @@
 
 hosts_entry =
   element hosts_entry {
-element host_address { text } &
+MAP,
+(
+  element host_address { STRING } &
 # we do not declare "names =, name =" because the conflict potential is big
-element names {
-LIST,
-  element name { text } +
-}
+  element names {
+  LIST,
+element name { STRING } +
+  }
+)
   }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.66/src/autoyast-rnc/networking.rnc 
new/yast2-network-4.3.0/src/autoyast-rnc/networking.rnc
--- old/yast2-network-4.2.66/src/autoyast-rnc/networking.rnc2020-04-24 
12:58:36.0 +0200
+++ new/yast2-network-4.3.0/src/autoyast-rnc/networking.rnc 2020-05-12 
15:36:03.0 +0200
@@ -2,21 +2,26 @@
 namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0;
 namespace config = "http://www.suse.com/1.0/configns;
 
+include "common.rnc"
+
 ## networking
 networking =
   element networking {
-element start_immediately { BOOLEAN }? &
-element keep_install_network { BOOLEAN }? &
-ipv6? &
-managed? &
-  

commit yast2-network for openSUSE:Factory

2020-04-25 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-04-25 20:19:04

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.2738 (New)


Package is "yast2-network"

Sat Apr 25 20:19:04 2020 rev:422 rq:797124 version:4.2.66

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-04-05 20:52:21.805114780 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.2738/yast2-network.changes
2020-04-25 20:21:01.225118378 +0200
@@ -1,0 +2,8 @@
+Thu Apr 16 07:19:26 UTC 2020 - Knut Anderssen 
+
+- Do not try to install kernel packages anymore since ISDN support
+  was already dropped which was the most common use case. Removed
+  also hardware methods used mainly for ISDN config. (bsc#1151187)
+- 4.2.66
+
+---

Old:

  yast2-network-4.2.65.tar.bz2

New:

  yast2-network-4.2.66.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ckwsRe/_old  2020-04-25 20:21:02.249120489 +0200
+++ /var/tmp/diff_new_pack.ckwsRe/_new  2020-04-25 20:21:02.253120497 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.65
+Version:4.2.66
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.65.tar.bz2 -> yast2-network-4.2.66.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.65/CONTRIBUTING.md 
new/yast2-network-4.2.66/CONTRIBUTING.md
--- old/yast2-network-4.2.65/CONTRIBUTING.md2020-04-02 15:02:55.0 
+0200
+++ new/yast2-network-4.2.66/CONTRIBUTING.md1970-01-01 01:00:00.0 
+0100
@@ -1,89 +0,0 @@
-YaST Contribution Guidelines
-
-
-YaST is an open source project and as such it welcomes all kinds of
-contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and the YaST 
maintainers.
-
-There are two main forms of contribution: reporting bugs and performing code
-changes.
-
-Bug Reports

-
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/enter_bug.cgi?format=guided=openSUSE+Factory=YaST2)
-or [GitHub issues](../../issues). (For Bugzilla, use the [simplified
-registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
-if you don't have an account yet.)
-
-When creating a bug report, please follow our [bug reporting
-guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
-
-We can't guarantee that every bug will be fixed, but we'll try.
-
-Code Changes
-
-
-We welcome all kinds of code contributions, from simple bug fixes to 
significant
-refactorings and implementation of new features. However, before making any
-non-trivial contribution, get in touch with us first — this can prevent wasted
-effort on both sides. Also, have a look at our [development
-documentation](http://en.opensuse.org/openSUSE:YaST_development).
-
-To send us your code change, use GitHub pull requests. The workflow is as
-follows:
-
-  1. Fork the project.
-
-  2. Create a topic branch based on `master`.
-
-  3. Implement your change, including tests (if possible). Make sure you adhere
- to the [Ruby style
- guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
-
-  4. Update the package version (in `packages/*.spec`, usually by
- `rake version:bump`) and add a new entry to the `package/*.changes` file
- (by `osc vc package`).  
- For bigger changes or changes which need longer discussion it is advised 
to
- add this as a separate last commit so it can be easily updated when 
another
- change is merged in the meantime.
-
-  5. Make sure your change didn't break anything by building the RPM package
- (`rake osc:build`). The build process includes running the full testsuite.
-
-  6. Publish the branch and create a pull request.
-
-  7. YaST developers will review your change and possibly point out issues.
- Adapt the code under their guidance until they are all resolved.
-
-  8. Finally, the pull request will get merged or rejected.
-
-See also [GitHub's guide on
-contributing](https://help.github.com/articles/fork-a-repo).
-
-If you want to do multiple unrelated changes, use separate branches and pull
-requests.
-
-### Commits
-
-Each commit in the pull request should do only one thing, which is clearly
-described by its commit message. Especially avoid mixing formatting changes and
-functional changes into one commit. When 

commit yast2-network for openSUSE:Factory

2020-04-05 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-04-05 20:52:18

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3248 (New)


Package is "yast2-network"

Sun Apr  5 20:52:18 2020 rev:421 rq:790905 version:4.2.65

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-03-07 21:36:56.232219428 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3248/yast2-network.changes
2020-04-05 20:52:21.805114780 +0200
@@ -1,0 +2,40 @@
+Thu Apr  2 11:33:49 UTC 2020 - Imobach Gonzalez Sosa 
+
+- AutoYaST: Do not try to activate network devices that are already
+  active in S390 systems (bsc#1163149). Related to jsc#SLE-7396.
+- AutoYaST: Allow to use spaces or colons to separate channel IDs
+  in the "chanids" element.
+- 4.2.65
+
+---
+Fri Mar 27 14:30:34 UTC 2020 - Knut Anderssen 
+
+- Refresh the current system cached network configuration with the
+  one written avoiding inconsistencies during installation
+  (bsc#1162987)
+- 4.2.64
+
+---
+Thu Mar 19 13:52:31 UTC 2020 - Knut Anderssen 
+
+- AutoYaST: do not crash when defined dns section whitout hostname
+  (bsc#1166953)
+- AutoYaST: handle the dhcp_hostname option in the dns section
+  correctly
+- 4.2.63
+
+---
+Wed Mar 18 09:42:36 UTC 2020 - Knut Anderssen 
+
+- Do a reload of configured interfaces when writing the
+  configuration during a ssh or vnc installation (bsc#1166287)
+- 4.2.62
+
+---
+Tue Mar 10 14:29:36 UTC 2020 - Josef Reidinger 
+
+- Store ip forwarding set during installation to target system
+  (bsc#1159295)
+- 4.2.61
+
+---

Old:

  yast2-network-4.2.60.tar.bz2

New:

  yast2-network-4.2.65.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.J21cPR/_old  2020-04-05 20:52:22.313115266 +0200
+++ /var/tmp/diff_new_pack.J21cPR/_new  2020-04-05 20:52:22.313115266 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.60
+Version:4.2.65
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.60.tar.bz2 -> yast2-network-4.2.65.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.60/package/yast2-network.changes 
new/yast2-network-4.2.65/package/yast2-network.changes
--- old/yast2-network-4.2.60/package/yast2-network.changes  2020-03-04 
08:24:53.0 +0100
+++ new/yast2-network-4.2.65/package/yast2-network.changes  2020-04-02 
15:02:55.0 +0200
@@ -1,4 +1,44 @@
 ---
+Thu Apr  2 11:33:49 UTC 2020 - Imobach Gonzalez Sosa 
+
+- AutoYaST: Do not try to activate network devices that are already
+  active in S390 systems (bsc#1163149). Related to jsc#SLE-7396.
+- AutoYaST: Allow to use spaces or colons to separate channel IDs
+  in the "chanids" element.
+- 4.2.65
+
+---
+Fri Mar 27 14:30:34 UTC 2020 - Knut Anderssen 
+
+- Refresh the current system cached network configuration with the
+  one written avoiding inconsistencies during installation
+  (bsc#1162987)
+- 4.2.64
+
+---
+Thu Mar 19 13:52:31 UTC 2020 - Knut Anderssen 
+
+- AutoYaST: do not crash when defined dns section whitout hostname
+  (bsc#1166953)
+- AutoYaST: handle the dhcp_hostname option in the dns section
+  correctly
+- 4.2.63
+
+---
+Wed Mar 18 09:42:36 UTC 2020 - Knut Anderssen 
+
+- Do a reload of configured interfaces when writing the
+  configuration during a ssh or vnc installation (bsc#1166287)
+- 4.2.62
+
+---
+Tue Mar 10 14:29:36 UTC 2020 - Josef Reidinger 
+
+- Store ip forwarding set during installation to target system
+  (bsc#1159295)
+- 4.2.61
+
+---
 Mon Mar  2 21:01:33 UTC 2020 - Michal Filka 
 
 - bsc#1164506
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.60/package/yast2-network.spec 
new/yast2-network-4.2.65/package/yast2-network.spec
--- 

commit yast2-network for openSUSE:Factory

2020-03-07 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-03-07 21:36:54

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.26092 (New)


Package is "yast2-network"

Sat Mar  7 21:36:54 2020 rev:420 rq:781522 version:4.2.60

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-03-01 21:27:33.932501816 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.26092/yast2-network.changes   
2020-03-07 21:36:56.232219428 +0100
@@ -1,0 +2,15 @@
+Mon Mar  2 21:01:33 UTC 2020 - Michal Filka 
+
+- bsc#1164506
+  - fixed setting hostname in installer
+- bsc#1164587
+  - fixed setting hostname according to AY profile
+- 4.2.60
+
+---
+Mon Mar  2 19:12:32 UTC 2020 - Knut Anderssen 
+
+- Do not modify interface name when enslaving it (bsc#1165463)
+- 4.2.59
+
+---

Old:

  yast2-network-4.2.58.tar.bz2

New:

  yast2-network-4.2.60.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.lHu4xt/_old  2020-03-07 21:36:57.392220211 +0100
+++ /var/tmp/diff_new_pack.lHu4xt/_new  2020-03-07 21:36:57.396220214 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.58
+Version:4.2.60
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.58.tar.bz2 -> yast2-network-4.2.60.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.58/package/yast2-network.changes 
new/yast2-network-4.2.60/package/yast2-network.changes
--- old/yast2-network-4.2.58/package/yast2-network.changes  2020-02-28 
12:45:32.0 +0100
+++ new/yast2-network-4.2.60/package/yast2-network.changes  2020-03-04 
08:24:53.0 +0100
@@ -1,4 +1,19 @@
 ---
+Mon Mar  2 21:01:33 UTC 2020 - Michal Filka 
+
+- bsc#1164506
+  - fixed setting hostname in installer
+- bsc#1164587
+  - fixed setting hostname according to AY profile
+- 4.2.60
+
+---
+Mon Mar  2 19:12:32 UTC 2020 - Knut Anderssen 
+
+- Do not modify interface name when enslaving it (bsc#1165463)
+- 4.2.59
+
+---
 Thu Feb 27 20:40:51 UTC 2020 - Knut Anderssen 
 
 - Do not crash when running the network configuration client if
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.58/package/yast2-network.spec 
new/yast2-network-4.2.60/package/yast2-network.spec
--- old/yast2-network-4.2.58/package/yast2-network.spec 2020-02-28 
12:45:32.0 +0100
+++ new/yast2-network-4.2.60/package/yast2-network.spec 2020-03-04 
08:24:53.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.58
+Version:4.2.60
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.58/src/include/network/services/dns.rb 
new/yast2-network-4.2.60/src/include/network/services/dns.rb
--- old/yast2-network-4.2.58/src/include/network/services/dns.rb
2020-02-28 12:45:32.0 +0100
+++ new/yast2-network-4.2.60/src/include/network/services/dns.rb
2020-03-04 08:24:53.0 +0100
@@ -257,6 +257,18 @@
   deep_copy(settings)
 end
 
+# Stores user's input from hostname field
+#
+# @param value [String]
+# @return [String] stored hostname
+def store_hostname(value)
+  hostname = Yast::Lan.yast_config.hostname
+  hostname.static = value
+  hostname.installer = value if Stage.initial
+
+  value
+end
+
 # @param [Hash] settings map of settings to be stored to DNS::
 def StoreSettings(settings)
   settings = deep_copy(settings)
@@ -270,7 +282,8 @@
 " ,\n\t"
   )
 
-  DNS.hostname = Ops.get_string(settings, "HOSTNAME", "")
+  store_hostname(settings["HOSTNAME"] || "")
+
   valid_nameservers = NonEmpty(nameservers).each_with_object([]) do 
|ip_str, all|
 all << IPAddr.new(ip_str) if IP.Check(ip_str)
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.58/src/lib/y2network/autoinst/config_reader.rb 
new/yast2-network-4.2.60/src/lib/y2network/autoinst/config_reader.rb
--- 

commit yast2-network for openSUSE:Factory

2020-03-01 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-03-01 21:27:15

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.26092 (New)


Package is "yast2-network"

Sun Mar  1 21:27:15 2020 rev:419 rq:780425 version:4.2.58

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-01-24 14:10:41.662399943 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.26092/yast2-network.changes   
2020-03-01 21:27:33.932501816 +0100
@@ -1,0 +2,82 @@
+Thu Feb 27 20:40:51 UTC 2020 - Knut Anderssen 
+
+- Do not crash when running the network configuration client if
+  the config has not been read by a previous client (bsc#1101514)
+- 4.2.58
+
+---
+Tue Feb 25 12:16:42 CET 2020 - sch...@suse.de
+
+- Using SysctlConfig class: Handle sysctl entries in different
+  directories (bsc#1151649).
+- 4.2.57
+
+---
+Fri Feb 21 09:53:25 UTC 2020 - Knut Anderssen 
+
+- Do not crash when checking if a given 'host' is local or not
+  (bsc#1163305)
+- 4.2.56
+
+---
+Wed Feb 19 11:52:25 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Add a class to represent NTP servers (jsc#SLE-7188).
+- 4.2.55
+
+---
+Wed Feb 19 07:34:39 UTC 2020 - Knut Anderssen 
+
+- Do not crash with an exception when editing the hardware
+  configuration of a new unplugged connection (bsc#1162679)
+
+---
+Fri Feb  7 17:31:31 UTC 2020 - Michal Filka 
+
+- bsc#1162271
+  - fixed validation of hostname
+- 4.2.54
+
+---
+Fri Feb  7 15:50:13 UTC 2020 - Knut Anderssen 
+
+- Fix the installation proposal text reflecting the network
+  configuration changes (bsc#1162796)
+- 4.2.53
+
+---
+Thu Feb  6 15:48:23 UTC 2020 - Knut Anderssen 
+
+- Prevent assignation of values not defined in the AutoYaST profile
+  when reading the interfaces section (bsc#1162671)
+- 4.2.52
+
+---
+Tue Feb  4 19:06:52 UTC 2020 - Knut Anderssen 
+
+- Do not break when reading interface config files with trailing
+  spaces (bsc#1161300)
+- 4.2.51
+
+---
+Mon Feb  3 10:44:31 UTC 2020 - Knut Anderssen 
+
+- Fix connection configuration summary when using a remote
+  IP address (bsc#1162483)
+- 4.2.50
+
+---
+Fri Jan 31 07:23:15 UTC 2020 - Knut Anderssen 
+
+- Do not fail when listing the s390 group devices of a given type
+  and no one is present (bsc#1160997)
+- 4.2.49
+
+---
+Thu Jan 30 12:37:03 UTC 2020 - Knut Anderssen 
+
+- Bring back the s390 group device activation dialog when editing
+  an offline s390 group device (bsc#1160997)
+- 4.2.48
+
+---

Old:

  yast2-network-4.2.47.tar.bz2

New:

  yast2-network-4.2.58.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.uZJcQe/_old  2020-03-01 21:27:35.136504262 +0100
+++ /var/tmp/diff_new_pack.uZJcQe/_new  2020-03-01 21:27:35.136504262 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.47
+Version:4.2.58
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -33,9 +33,8 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# NetworkService check if Systemd is running for determining
-# the current network backend
-BuildRequires:  yast2 >= 4.2.31
+# CFA::SysctlConfig
+BuildRequires:  yast2 >= 4.2.67
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -49,8 +48,8 @@
 Requires:   sysconfig >= 0.80.0
 Requires:   yast2-proxy
 Requires:   yast2-storage-ng
-# CFA::Sysctl
-Requires:   yast2 >= 4.2.25
+# CFA::SysctlConfig 
+Requires:   yast2 >= 4.2.67
 # Packages::vnc_packages
 Requires:   augeas-lenses
 Requires:   yast2-packager >= 4.0.18

++ yast2-network-4.2.47.tar.bz2 -> yast2-network-4.2.58.tar.bz2 ++
 5311 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2020-01-24 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-01-24 14:10:31

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.26092 (New)


Package is "yast2-network"

Fri Jan 24 14:10:31 2020 rev:418 rq:766616 version:4.2.47

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-01-17 16:03:50.484396171 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.26092/yast2-network.changes   
2020-01-24 14:10:41.662399943 +0100
@@ -1,0 +2,21 @@
+Thu Jan 23 09:16:03 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Do not try to read an ifcfg-* file that does not exist
+  (bsc#1161234).
+
+---
+Wed Jan 22 16:43:21 UTC 2020 - Ancor Gonzalez Sosa 
+
+- Do not crash if install.inf contains an IP address that cannot
+  be resolved to a name (bsc#1161217)
+- 4.2.47
+
+---
+Tue Jan 21 07:24:03 UTC 2020 - Knut Anderssen 
+
+- bsc#1156986
+  - Fix crash when logging that an interface is not connected or
+is not bridgeable when proposing the virtualization config.
+- 4.2.46
+
+---

Old:

  yast2-network-4.2.45.tar.bz2

New:

  yast2-network-4.2.47.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.64I8O7/_old  2020-01-24 14:10:42.382400187 +0100
+++ /var/tmp/diff_new_pack.64I8O7/_new  2020-01-24 14:10:42.382400187 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.45
+Version:4.2.47
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.45.tar.bz2 -> yast2-network-4.2.47.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.45/package/yast2-network.changes 
new/yast2-network-4.2.47/package/yast2-network.changes
--- old/yast2-network-4.2.45/package/yast2-network.changes  2020-01-17 
10:56:01.0 +0100
+++ new/yast2-network-4.2.47/package/yast2-network.changes  2020-01-23 
10:30:31.0 +0100
@@ -1,4 +1,25 @@
 ---
+Thu Jan 23 09:16:03 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Do not try to read an ifcfg-* file that does not exist
+  (bsc#1161234).
+
+---
+Wed Jan 22 16:43:21 UTC 2020 - Ancor Gonzalez Sosa 
+
+- Do not crash if install.inf contains an IP address that cannot
+  be resolved to a name (bsc#1161217)
+- 4.2.47
+
+---
+Tue Jan 21 07:24:03 UTC 2020 - Knut Anderssen 
+
+- bsc#1156986
+  - Fix crash when logging that an interface is not connected or
+is not bridgeable when proposing the virtualization config.
+- 4.2.46
+
+---
 Wed Jan 15 09:55:05 UTC 2020 - Knut Anderssen 
 
 - bsc#1158025
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.45/package/yast2-network.spec 
new/yast2-network-4.2.47/package/yast2-network.spec
--- old/yast2-network-4.2.45/package/yast2-network.spec 2020-01-17 
10:56:01.0 +0100
+++ new/yast2-network-4.2.47/package/yast2-network.spec 2020-01-23 
10:30:31.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.45
+Version:4.2.47
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.45/src/lib/y2network/sysconfig/hostname_reader.rb 
new/yast2-network-4.2.47/src/lib/y2network/sysconfig/hostname_reader.rb
--- old/yast2-network-4.2.45/src/lib/y2network/sysconfig/hostname_reader.rb 
2020-01-17 10:56:01.0 +0100
+++ new/yast2-network-4.2.47/src/lib/y2network/sysconfig/hostname_reader.rb 
2020-01-23 10:30:31.0 +0100
@@ -92,7 +92,9 @@
 end
 
 host, _domain = *Yast::Hostname.SplitFQ(fqdn)
-host.empty? ? nil : host
+return nil if host.nil? || host.empty?
+
+host
   end
 
   # Reads the (transient) hostname known to the resolver
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.45/src/lib/y2network/sysconfig/interface_file.rb 
new/yast2-network-4.2.47/src/lib/y2network/sysconfig/interface_file.rb
--- 

commit yast2-network for openSUSE:Factory

2020-01-17 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-01-17 16:03:44

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.26092 (New)


Package is "yast2-network"

Fri Jan 17 16:03:44 2020 rev:417 rq:765175 version:4.2.45

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-01-11 14:47:43.469366874 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.26092/yast2-network.changes   
2020-01-17 16:03:50.484396171 +0100
@@ -1,0 +2,18 @@
+Wed Jan 15 09:55:05 UTC 2020 - Knut Anderssen 
+
+- bsc#1158025
+  - When touching existent udev rules, modify only the parts that
+are relevant or have changed.
+  - When the hardware is read, use the parent_bus_id as the busid
+for virtio netcards.
+- 4.2.45
+
+---
+Wed Jan 15 08:14:48 UTC 2020 - Knut Anderssen 
+
+- bsc#1156106
+  - Fixed the initialization of DNS.dhcp_hostname by the
+inst_setup_dhcp client
+- 4.2.44
+
+---

Old:

  yast2-network-4.2.43.tar.bz2

New:

  yast2-network-4.2.45.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.2iV8Pq/_old  2020-01-17 16:03:51.636396716 +0100
+++ /var/tmp/diff_new_pack.2iV8Pq/_new  2020-01-17 16:03:51.648396721 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.43
+Version:4.2.45
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.43.tar.bz2 -> yast2-network-4.2.45.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.43/.rubocop.yml 
new/yast2-network-4.2.45/.rubocop.yml
--- old/yast2-network-4.2.43/.rubocop.yml   2020-01-10 11:27:21.0 
+0100
+++ new/yast2-network-4.2.45/.rubocop.yml   2020-01-17 10:56:01.0 
+0100
@@ -14,6 +14,7 @@
   Max: 86
   Exclude:
 - "test/**/*"
+- "src/include/network/routines.rb"
 
 # Offense count: 5
 # Configuration parameters: CountComments.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.43/package/yast2-network.changes 
new/yast2-network-4.2.45/package/yast2-network.changes
--- old/yast2-network-4.2.43/package/yast2-network.changes  2020-01-10 
11:27:21.0 +0100
+++ new/yast2-network-4.2.45/package/yast2-network.changes  2020-01-17 
10:56:01.0 +0100
@@ -1,4 +1,22 @@
 ---
+Wed Jan 15 09:55:05 UTC 2020 - Knut Anderssen 
+
+- bsc#1158025
+  - When touching existent udev rules, modify only the parts that
+are relevant or have changed.
+  - When the hardware is read, use the parent_bus_id as the busid
+for virtio netcards.
+- 4.2.45
+
+---
+Wed Jan 15 08:14:48 UTC 2020 - Knut Anderssen 
+
+- bsc#1156106
+  - Fixed the initialization of DNS.dhcp_hostname by the
+inst_setup_dhcp client
+- 4.2.44
+
+---
 Mon Jan  6 11:54:00 UTC 2020 - Martin Vidner 
 
 - Add a sanity test for CLI error code reporting (bsc#1144351)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.43/package/yast2-network.spec 
new/yast2-network-4.2.45/package/yast2-network.spec
--- old/yast2-network-4.2.43/package/yast2-network.spec 2020-01-10 
11:27:21.0 +0100
+++ new/yast2-network-4.2.45/package/yast2-network.spec 2020-01-17 
10:56:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.43
+Version:4.2.45
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.43/src/include/network/routines.rb 
new/yast2-network-4.2.45/src/include/network/routines.rb
--- old/yast2-network-4.2.43/src/include/network/routines.rb2020-01-10 
11:27:21.0 +0100
+++ new/yast2-network-4.2.45/src/include/network/routines.rb2020-01-17 
10:56:01.0 +0100
@@ -535,7 +535,12 @@
 
   one["bus"] = bus
   one["busid"] = card["sysfs_bus_id"] || ""
-  one["parent_busid"] = one["sysfs_id"].split("/")[-2] if 
one["busid"].start_with?("virtio")
+
+  if one["busid"].start_with?("virtio")
+one["sub_device_busid"] = one["busid"]
+one["busid"] = 

commit yast2-network for openSUSE:Factory

2020-01-11 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-01-11 14:47:35

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.6675 (New)


Package is "yast2-network"

Sat Jan 11 14:47:35 2020 rev:416 rq:762747 version:4.2.43

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2020-01-04 19:21:04.393130111 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.6675/yast2-network.changes
2020-01-11 14:47:43.469366874 +0100
@@ -1,0 +2,6 @@
+Mon Jan  6 11:54:00 UTC 2020 - Martin Vidner 
+
+- Add a sanity test for CLI error code reporting (bsc#1144351)
+- 4.2.43
+
+---

Old:

  yast2-network-4.2.42.tar.bz2

New:

  yast2-network-4.2.43.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.gpAqfS/_old  2020-01-11 14:47:44.049367100 +0100
+++ /var/tmp/diff_new_pack.gpAqfS/_new  2020-01-11 14:47:44.053367101 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.42
+Version:4.2.43
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.42.tar.bz2 -> yast2-network-4.2.43.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.42/package/yast2-network.changes 
new/yast2-network-4.2.43/package/yast2-network.changes
--- old/yast2-network-4.2.42/package/yast2-network.changes  2020-01-03 
13:43:29.0 +0100
+++ new/yast2-network-4.2.43/package/yast2-network.changes  2020-01-10 
11:27:21.0 +0100
@@ -1,4 +1,10 @@
 ---
+Mon Jan  6 11:54:00 UTC 2020 - Martin Vidner 
+
+- Add a sanity test for CLI error code reporting (bsc#1144351)
+- 4.2.43
+
+---
 Fri Jan  3 10:11:52 UTC 2020 - Michal Filka 
 
 - bnc#1159970 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.42/package/yast2-network.spec 
new/yast2-network-4.2.43/package/yast2-network.spec
--- old/yast2-network-4.2.42/package/yast2-network.spec 2020-01-03 
13:43:29.0 +0100
+++ new/yast2-network-4.2.43/package/yast2-network.spec 2020-01-10 
11:27:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.42
+Version:4.2.43
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.42/t/exit-codes.t 
new/yast2-network-4.2.43/t/exit-codes.t
--- old/yast2-network-4.2.42/t/exit-codes.t 1970-01-01 01:00:00.0 
+0100
+++ new/yast2-network-4.2.43/t/exit-codes.t 2020-01-10 11:27:21.0 
+0100
@@ -0,0 +1,43 @@
+#!/bin/sh
+
+# Copyright (c) [2020] SUSE LLC
+#
+# All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of version 2 of the GNU General Public License as published
+# by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, contact SUSE LLC.
+#
+# To contact SUSE LLC about this file by physical or electronic mail, you may
+# find current contact information at www.suse.com.
+
+# a TAP compatible test
+
+# quick and dirty: fail early
+set -eu
+
+# test plan
+echo 1..1
+
+# usage:
+#  foo || tapfail
+#  echo "ok"
+# this will tell TAP "not ok" IF foo has failed
+tapfail() {
+  echo -n "not "
+}
+
+YAST=/usr/sbin/yast
+
+TEST="1 An unknown command produces an error exit code"
+echo "# $TEST"
+! $YAST lan nosuchcommand || tapfail
+echo "ok $TEST"




commit yast2-network for openSUSE:Factory

2020-01-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2020-01-04 19:20:55

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.6675 (New)


Package is "yast2-network"

Sat Jan  4 19:20:55 2020 rev:415 rq:760647 version:4.2.42

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-12-14 12:02:54.975407783 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.6675/yast2-network.changes
2020-01-04 19:21:04.393130111 +0100
@@ -1,0 +2,50 @@
+Fri Jan  3 10:11:52 UTC 2020 - Michal Filka 
+
+- bnc#1159970 
+  - suppport for reading / writing MTU
+- 4.2.42
+
+---
+Thu Jan  2 08:54:15 UTC 2020 - Michal Filka 
+
+- bnc#1153198, fate#319639
+  - fixed internal error caused by incompatibility between new and
+old DNS / Hostname handling code.
+- 4.2.41
+
+---
+Fri Dec 27 11:37:02 UTC 2019 - Josef Reidinger 
+
+- read properly old wireless auth modes and use new ones instead
+  (bsc#1159160)
+- 4.2.40
+
+---
+Mon Dec 23 07:42:56 UTC 2019 - Michal Filka 
+
+- bnc#1153198, fate#319639
+  - improved previous fix - exception handling
+- 4.2.39
+
+---
+Tue Dec 17 10:57:27 UTC 2019 - Knut Andersse 
+
+- bsc#1156986
+  - Fixed the creation of network configuration for virtualization
+- 4.2.38
+
+---
+Tue Dec 17 10:49:05 UTC 2019 - Michal Filka 
+
+- bnc#1153198, fate#319639
+  improved previous fix together with some cleanup
+- 4.2.37
+
+---
+Mon Dec 16 08:43:36 UTC 2019 - Knut Anderssen 
+
+- Centered and added title to the add interface dialog
+  (jsc#SLE-7753)
+- 4.2.36
+
+---

Old:

  yast2-network-4.2.35.tar.bz2

New:

  yast2-network-4.2.42.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.CXYb1A/_old  2020-01-04 19:21:04.869130323 +0100
+++ /var/tmp/diff_new_pack.CXYb1A/_new  2020-01-04 19:21:04.869130323 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.35
+Version:4.2.42
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.35.tar.bz2 -> yast2-network-4.2.42.tar.bz2 ++
 3793 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2019-12-14 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-12-14 12:02:37

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.4691 (New)


Package is "yast2-network"

Sat Dec 14 12:02:37 2019 rev:414 rq:753952 version:4.2.35

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-11-20 10:27:24.878564404 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.4691/yast2-network.changes
2019-12-14 12:02:54.975407783 +0100
@@ -1,0 +2,48 @@
+Wed Dec  4 09:51:38 UTC 2019 - Michal Filka 
+
+- bnc#1158122
+  - fixed internal error when incorrectly querying for hostname in
+AY's second stage
+- 4.2.35 
+
+---
+Tue Nov 26 15:16:04 UTC 2019 - Knut Anderssen 
+
+- Drop support for obsolete network device types (jsc#SLE-7753)
+- 4.2.34
+
+---
+Mon Nov 25 15:02:38 UTC 2019 - Knut Anderssen 
+
+- Fix wireless mode and auth_mode initialization (bsc#1157394)
+- 4.2.33
+
+---
+Mon Nov 25 09:36:43 UTC 2019 - Knut Anderssen 
+
+- Added a special type for the "Unknown" interfaces omitting them
+  from the interfaces list (bsc#1156285)
+- 4.2.32
+
+---
+Mon Nov 25 08:34:55 UTC 2019 - Knut Anderssen 
+
+- Ignores invalid udev rules parts (bsc#1157361)
+- 4.2.31
+
+---
+Thu Nov 21 10:57:33 UTC 2019 - Knut Alejandro Anderssen González 

+
+- Firsboot dhcp: Ensure the network configuration has been read
+  before trying to configure it by dhcp (bsc#1157429)
+- 4.2.30
+
+---
+Thu Nov 21 07:13:28 UTC 2019 - Michal Filka 
+
+- bnc#1153198, fate#319639
+  - implemented proper hostname setup in installation for the new
+backend
+- 4.2.29
+
+---

Old:

  yast2-network-4.2.28.tar.bz2

New:

  yast2-network-4.2.35.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ZgedDM/_old  2019-12-14 12:02:57.475407409 +0100
+++ /var/tmp/diff_new_pack.ZgedDM/_new  2019-12-14 12:02:57.479407409 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.28
+Version:4.2.35
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.28.tar.bz2 -> yast2-network-4.2.35.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.28/package/yast2-network.changes 
new/yast2-network-4.2.35/package/yast2-network.changes
--- old/yast2-network-4.2.28/package/yast2-network.changes  2019-11-19 
13:31:29.0 +0100
+++ new/yast2-network-4.2.35/package/yast2-network.changes  2019-12-04 
12:08:45.0 +0100
@@ -1,4 +1,52 @@
 ---
+Wed Dec  4 09:51:38 UTC 2019 - Michal Filka 
+
+- bnc#1158122
+  - fixed internal error when incorrectly querying for hostname in
+AY's second stage
+- 4.2.35 
+
+---
+Tue Nov 26 15:16:04 UTC 2019 - Knut Anderssen 
+
+- Drop support for obsolete network device types (jsc#SLE-7753)
+- 4.2.34
+
+---
+Mon Nov 25 15:02:38 UTC 2019 - Knut Anderssen 
+
+- Fix wireless mode and auth_mode initialization (bsc#1157394)
+- 4.2.33
+
+---
+Mon Nov 25 09:36:43 UTC 2019 - Knut Anderssen 
+
+- Added a special type for the "Unknown" interfaces omitting them
+  from the interfaces list (bsc#1156285)
+- 4.2.32
+
+---
+Mon Nov 25 08:34:55 UTC 2019 - Knut Anderssen 
+
+- Ignores invalid udev rules parts (bsc#1157361)
+- 4.2.31
+
+---
+Thu Nov 21 10:57:33 UTC 2019 - Knut Alejandro Anderssen González 

+
+- Firsboot dhcp: Ensure the network configuration has been read
+  before trying to configure it by dhcp (bsc#1157429)
+- 4.2.30
+
+---
+Thu Nov 21 07:13:28 UTC 2019 - Michal Filka 
+
+- bnc#1153198, fate#319639
+  - implemented proper hostname setup in installation for the new
+backend
+- 4.2.29
+

commit yast2-network for openSUSE:Factory

2019-11-20 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-11-20 10:27:23

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.26869 (New)


Package is "yast2-network"

Wed Nov 20 10:27:23 2019 rev:413 rq:749514 version:4.2.28

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-10-16 09:11:35.844037853 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.26869/yast2-network.changes   
2019-11-20 10:27:24.878564404 +0100
@@ -1,0 +2,39 @@
+Tue Nov 19 12:05:21 UTC 2019 - David Diaz 
+
+- Do not crash when wrapping text (bsc#1157161)
+- 4.2.28
+
+---
+Tue Nov 12 13:35:02 UTC 2019 - Josef Reidinger 
+
+- fix importing dhclient_set_hostname key from autoyast profile
+  (bsc#1152021)
+- 4.2.27
+
+---
+Sun Nov 10 09:28:14 UTC 2019 - Knut Anderssen 
+
+- Wireless: Fix wpa auth modes selection removing the prefix from
+  the combobox value which is not used when writing the config.
+  (bsc#1155639)
+- 4.2.26
+
+---
+Fri Nov  8 13:15:15 UTC 2019 - Knut Anderssen 
+
+- Live installation:
+  - Do not try to configure dhcp when NetworkManager is in use.
+  - Show the general tab in the lan client allowing to switch
+between backends when systemd is running.
+  - Do not do a netconfig update during an installation for not
+breaking the current resolv configuration.
+- 4.2.25
+
+---
+Fri Nov  1 08:43:31 UTC 2019 - Josef Reidinger 
+
+- fix typo in remote desktop file (thanks for contribution 
+  to Markus S aka kamikazow) (bsc#1155584)
+- 4.2.24
+
+---

Old:

  yast2-network-4.2.23.tar.bz2

New:

  yast2-network-4.2.28.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.pthWSm/_old  2019-11-20 10:27:25.278564483 +0100
+++ /var/tmp/diff_new_pack.pthWSm/_new  2019-11-20 10:27:25.278564483 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.23
+Version:4.2.28
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -33,8 +33,9 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# CFA::Sysctl
-BuildRequires:  yast2 >= 4.2.25
+# NetworkService check if Systemd is running for determining
+# the current network backend
+BuildRequires:  yast2 >= 4.2.31
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml

++ yast2-network-4.2.23.tar.bz2 -> yast2-network-4.2.28.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.23/package/yast2-network.changes 
new/yast2-network-4.2.28/package/yast2-network.changes
--- old/yast2-network-4.2.23/package/yast2-network.changes  2019-10-15 
10:56:48.0 +0200
+++ new/yast2-network-4.2.28/package/yast2-network.changes  2019-11-19 
13:31:29.0 +0100
@@ -1,4 +1,43 @@
 ---
+Tue Nov 19 12:05:21 UTC 2019 - David Diaz 
+
+- Do not crash when wrapping text (bsc#1157161)
+- 4.2.28
+
+---
+Tue Nov 12 13:35:02 UTC 2019 - Josef Reidinger 
+
+- fix importing dhclient_set_hostname key from autoyast profile
+  (bsc#1152021)
+- 4.2.27
+
+---
+Sun Nov 10 09:28:14 UTC 2019 - Knut Anderssen 
+
+- Wireless: Fix wpa auth modes selection removing the prefix from
+  the combobox value which is not used when writing the config.
+  (bsc#1155639)
+- 4.2.26
+
+---
+Fri Nov  8 13:15:15 UTC 2019 - Knut Anderssen 
+
+- Live installation:
+  - Do not try to configure dhcp when NetworkManager is in use.
+  - Show the general tab in the lan client allowing to switch
+between backends when systemd is running.
+  - Do not do a netconfig update during an installation for not
+breaking the current resolv configuration.
+- 4.2.25
+
+---
+Fri Nov  1 08:43:31 UTC 2019 - Josef Reidinger 
+
+- fix typo in remote desktop file (thanks for contribution 
+  to Markus S aka kamikazow) (bsc#1155584)
+- 4.2.24
+
+---
 

commit yast2-network for openSUSE:Factory

2019-10-16 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-10-16 09:11:34

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.2352 (New)


Package is "yast2-network"

Wed Oct 16 09:11:34 2019 rev:412 rq:738557 version:4.2.23

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-10-05 16:17:03.229945213 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.2352/yast2-network.changes
2019-10-16 09:11:35.844037853 +0200
@@ -1,0 +2,33 @@
+Tue Oct 15 08:48:26 UTC 2019 - Josef Reidinger 
+
+- Fix crash caused by type in widget method (caused in 4.2.22 by
+  rubocop done as side-effect of bsc#1153673 fix)
+- 4.2.23
+
+---
+Mon Oct 14 08:53:14 UTC 2019 - Knut Anderssen 
+
+- bsc#1153673
+  - Fix Yast::Logger dependency in bridge connection config.
+- 4.2.22
+
+---
+Wed Oct  9 13:58:48 UTC 2019 - Josef Reidinger 
+
+- Update reference in VLAN, Bridge or Bond when its device is
+  removed or renamed (bsc#1153460)
+- 4.2.21
+
+---
+Mon Oct  7 06:32:21 UTC 2019 - Imobach Gonzalez Sosa 
+
+- Place sysctl settings in /etc/sysctl.d/ (jsc#SLE-9077).
+- 4.2.20
+
+---
+Mon Oct  7 06:05:22 UTC 2019 - Knut Anderssen 
+
+- AutoYaST: Added back the activation of s390 devices during the
+  first stage as it was removed when switched to the new data model
+
+---

Old:

  yast2-network-4.2.19.tar.bz2

New:

  yast2-network-4.2.23.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.mbVHgH/_old  2019-10-16 09:11:36.664035739 +0200
+++ /var/tmp/diff_new_pack.mbVHgH/_new  2019-10-16 09:11:36.664035739 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.19
+Version:4.2.23
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
@@ -33,8 +33,8 @@
 #for install task
 BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-# Y2Firewall interface zone mapping methods
-BuildRequires:  yast2 >= 4.1.53
+# CFA::Sysctl
+BuildRequires:  yast2 >= 4.2.25
 BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -46,9 +46,10 @@
 PreReq: /bin/rm
 #netconfig (FaTE #303618)
 Requires:   sysconfig >= 0.80.0
-Requires:   yast2 >= 4.1.53
 Requires:   yast2-proxy
 Requires:   yast2-storage-ng
+# CFA::Sysctl
+Requires:   yast2 >= 4.2.25
 # Packages::vnc_packages
 Requires:   augeas-lenses
 Requires:   yast2-packager >= 4.0.18

++ yast2-network-4.2.19.tar.bz2 -> yast2-network-4.2.23.tar.bz2 ++
 8137 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2019-10-05 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-10-05 16:17:01

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.2352 (New)


Package is "yast2-network"

Sat Oct  5 16:17:01 2019 rev:411 rq:735348 version:4.2.19

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-10-03 14:07:29.924402927 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.2352/yast2-network.changes
2019-10-05 16:17:03.229945213 +0200
@@ -1,0 +2,12 @@
+Fri Oct  4 13:51:42 UTC 2019 - Josef Reidinger 
+
+- Fix CLI tests for network (bsc#957537)
+- 4.2.19
+
+---
+Thu Oct  3 14:27:53 UTC 2019 - Josef Reidinger 
+
+- Fix blink positioning in UI (bsc#1119407)
+- 4.2.18
+
+---

Old:

  yast2-network-4.2.17.tar.bz2

New:

  yast2-network-4.2.19.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.IW60dx/_old  2019-10-05 16:17:04.025943141 +0200
+++ /var/tmp/diff_new_pack.IW60dx/_new  2019-10-05 16:17:04.033943119 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.17
+Version:4.2.19
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.17.tar.bz2 -> yast2-network-4.2.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.17/package/yast2-network.changes 
new/yast2-network-4.2.19/package/yast2-network.changes
--- old/yast2-network-4.2.17/package/yast2-network.changes  2019-10-03 
09:49:25.0 +0200
+++ new/yast2-network-4.2.19/package/yast2-network.changes  2019-10-04 
21:10:51.0 +0200
@@ -1,4 +1,16 @@
 ---
+Fri Oct  4 13:51:42 UTC 2019 - Josef Reidinger 
+
+- Fix CLI tests for network (bsc#957537)
+- 4.2.19
+
+---
+Thu Oct  3 14:27:53 UTC 2019 - Josef Reidinger 
+
+- Fix blink positioning in UI (bsc#1119407)
+- 4.2.18
+
+---
 Wed Oct  2 22:02:30 UTC 2019 - Knut Anderssen 
 
 - bsc#1152840
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.17/package/yast2-network.spec 
new/yast2-network-4.2.19/package/yast2-network.spec
--- old/yast2-network-4.2.17/package/yast2-network.spec 2019-10-03 
09:49:25.0 +0200
+++ new/yast2-network-4.2.19/package/yast2-network.spec 2019-10-04 
21:10:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.17
+Version:4.2.19
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.17/src/include/network/lan/hardware.rb 
new/yast2-network-4.2.19/src/include/network/lan/hardware.rb
--- old/yast2-network-4.2.17/src/include/network/lan/hardware.rb
2019-10-03 09:49:25.0 +0200
+++ new/yast2-network-4.2.19/src/include/network/lan/hardware.rb
2019-10-04 21:10:51.0 +0200
@@ -27,48 +27,14 @@
 # Authors: Michal Svec 
 #
 
-include Yast::UIShortcuts
-
 require "y2network/dialogs/s390_device_activation"
 
 module Yast
   module NetworkLanHardwareInclude
-def initialize_network_lan_hardware(include_target)
-  Yast.import "UI"
-
+def initialize_network_lan_hardware(_include_target)
   textdomain "network"
 
   Yast.import "Arch"
-  Yast.import "CWM"
-  Yast.import "Label"
-  Yast.import "Lan"
-  Yast.import "NetworkInterfaces"
-  Yast.import "Popup"
-  Yast.import "Wizard"
-  Yast.import "LanItems"
-  Yast.include include_target, "network/routines.rb"
-  Yast.include include_target, "network/lan/cards.rb"
-
-  @hardware = nil
-end
-
-# Dynamic initialization of help text.
-#
-# @return content of the help
-def initHelp
-  if Arch.s390
-# overwrite help
-# Manual dialog help 5/4
-hw_help = _(
-  "Here, set up your networking device. The values will be\nwritten 
to /etc/modprobe.conf or /etc/chandev.conf.\n"
-) +
-  # Manual dialog help 6/4
-  _(
-"Options for the module should be written in the format 
specified\nin the IBM Device Drivers and Installation Commands 
manual."
-  )
-  end
-
-  hw_help
 end
 
  

commit yast2-network for openSUSE:Factory

2019-10-03 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-10-03 14:07:28

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.2352 (New)


Package is "yast2-network"

Thu Oct  3 14:07:28 2019 rev:410 rq:734728 version:4.2.17

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-09-23 13:15:50.449121935 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.2352/yast2-network.changes
2019-10-03 14:07:29.924402927 +0200
@@ -1,0 +2,49 @@
+Wed Oct  2 22:02:30 UTC 2019 - Knut Anderssen 
+
+- bsc#1152840
+  - Fix interface ipaddr and prefixlen in the cloned profile.
+- 4.2.17
+
+---
+Wed Oct  2 09:05:14 UTC 2019 - Josef Reidinger 
+
+- Adapt network CLI to new data model with improved error reporting
+  (bsc#1151242)
+- 4.2.16
+
+---
+Wed Oct  2 05:57:45 UTC 2019 - Imobach Gonzalez Sosa 
+
+- boo#1152748:
+  - Fix detection of the network status during installation.
+- 4.1.15
+
+---
+Tue Oct  1 14:24:42 UTC 2019 - Knut Anderssen 
+
+- AY: Fix interface name check for using the fallback when not set.
+
+---
+Tue Oct  1 09:24:57 UTC 2019 - Imobach Gonzalez Sosa 
+
+- boo#1152627
+  - Fix circular dependency between DNS and Host modules
+  - Remove unneeded code related to the already dropped feature to write the 
hostname
+to /etc/hosts.
+- 4.2.14
+
+---
+Fri Sep 20 13:29:30 UTC 2019 - Imobach Gonzalez Sosa 
+
+- bsc#1151491
+  - Completed the new data model (support for TUN/TAP, bridges,
+bonding, VLANs, etc.).
+  - Switched to use the new data model.
+  - New wireless configuration workflow.
+  - Revamped support for interfaces renaming and drivers assignment, including
+better udev rules handling.
+  - Fixed /etc/hosts handling when switching from static to DHCP based 
configuration.
+  - Many small fixes in different areas.
+- 4.2.13
+
+---

Old:

  yast2-network-4.2.12.tar.bz2

New:

  yast2-network-4.2.17.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.fc0k83/_old  2019-10-03 14:07:30.392401723 +0200
+++ /var/tmp/diff_new_pack.fc0k83/_new  2019-10-03 14:07:30.396401713 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.12
+Version:4.2.17
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.12.tar.bz2 -> yast2-network-4.2.17.tar.bz2 ++
 36498 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-09-23 13:15:49

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.7948 (New)


Package is "yast2-network"

Mon Sep 23 13:15:49 2019 rev:409 rq:730364 version:4.2.12

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-07-31 14:26:52.494245841 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.7948/yast2-network.changes
2019-09-23 13:15:50.449121935 +0200
@@ -1,0 +2,12 @@
+Tue Sep 10 07:40:04 UTC 2019 - Michal Filka 
+
+- bnc#1149234
+  - apply udev rule from AY profile according to device's mac
+value when permanent_mac is missing in list of the device's
+options
+- bsc#1133442
+  - Increased the DHCP timeout when NetworkManager is in use to
+its default (45 seconds).
+- 4.2.12
+
+---

Old:

  yast2-network-4.2.11.tar.bz2

New:

  yast2-network-4.2.12.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.6EZJ9K/_old  2019-09-23 13:15:50.865121861 +0200
+++ /var/tmp/diff_new_pack.6EZJ9K/_new  2019-09-23 13:15:50.865121861 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.11
+Version:4.2.12
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only

++ yast2-network-4.2.11.tar.bz2 -> yast2-network-4.2.12.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.11/package/yast2-network.changes 
new/yast2-network-4.2.12/package/yast2-network.changes
--- old/yast2-network-4.2.11/package/yast2-network.changes  2019-07-31 
10:03:50.0 +0200
+++ new/yast2-network-4.2.12/package/yast2-network.changes  2019-09-12 
12:39:31.0 +0200
@@ -1,4 +1,16 @@
 ---
+Tue Sep 10 07:40:04 UTC 2019 - Michal Filka 
+
+- bnc#1149234
+  - apply udev rule from AY profile according to device's mac
+value when permanent_mac is missing in list of the device's
+options
+- bsc#1133442
+  - Increased the DHCP timeout when NetworkManager is in use to
+its default (45 seconds).
+- 4.2.12
+
+---
 Tue Jul 30 11:14:04 UTC 2019 - Dominique Leuenberger 
 
 - Requires hostname: there are many places where the module calls
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.2.11/package/yast2-network.spec 
new/yast2-network-4.2.12/package/yast2-network.spec
--- old/yast2-network-4.2.11/package/yast2-network.spec 2019-07-31 
10:03:50.0 +0200
+++ new/yast2-network-4.2.12/package/yast2-network.spec 2019-09-12 
12:39:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.11
+Version:4.2.12
 Release:0
 Summary:YaST2 - Network Configuration
 License:GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.11/src/lib/network/edit_nic_name.rb 
new/yast2-network-4.2.12/src/lib/network/edit_nic_name.rb
--- old/yast2-network-4.2.11/src/lib/network/edit_nic_name.rb   2019-07-31 
10:03:50.0 +0200
+++ new/yast2-network-4.2.12/src/lib/network/edit_nic_name.rb   2019-09-12 
12:39:31.0 +0200
@@ -40,7 +40,7 @@
   end
 
   if current_item["hwinfo"]
-@mac = current_item["hwinfo"]["permanent_mac"]
+@mac = LanItems.item_mac(LanItems.current)
 @bus_id = current_item["hwinfo"]["busid"]
   else
 @mac = ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.2.11/src/lib/network/network_autoyast.rb 
new/yast2-network-4.2.12/src/lib/network/network_autoyast.rb
--- old/yast2-network-4.2.11/src/lib/network/network_autoyast.rb
2019-07-31 10:03:50.0 +0200
+++ new/yast2-network-4.2.12/src/lib/network/network_autoyast.rb
2019-09-12 12:39:31.0 +0200
@@ -339,6 +339,8 @@
   # Match also parent busid if exist (bsc#1129012)
   parent_busid = i["hwinfo"]["parent_busid"] || busid
   mac = i["hwinfo"]["permanent_mac"]
+  # use mac if permanent_mac is missing (bsc#1149234)
+  mac = i["hwinfo"]["mac"] if mac.nil? || mac.empty?
 
   [busid, parent_busid, mac].any? { |v| v.casecmp(key).zero? }
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-network for openSUSE:Factory

2019-07-31 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-07-31 14:26:50

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.4126 (New)


Package is "yast2-network"

Wed Jul 31 14:26:50 2019 rev:408 rq:719996 version:4.2.11

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-04-28 20:00:05.654911744 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.4126/yast2-network.changes
2019-07-31 14:26:52.494245841 +0200
@@ -1,0 +2,82 @@
+Tue Jul 30 11:14:04 UTC 2019 - Dominique Leuenberger 
+
+- Requires hostname: there are many places where the module calls
+  /bin/hostname (boo#1142595).
+- 4.2.11
+
+---
+Fri Jul 19 08:10:14 UTC 2019 - Josef Reidinger 
+
+- avoid dependency on autoyast2-installation
+- 4.2.10
+
+---
+Wed Jul 17 10:30:31 UTC 2019 - Imobach Gonzalez Sosa 
+
+- Revamp UI internals, adding new widgets, sequences and
+  introducing the concept of interface builder.
+- Add initial bits of the new data model.
+- Fix several bugs that were introduced in version 4.2.2.
+- 4.2.9
+
+---
+Wed Jul  3 16:40:45 UTC 2019 - Imobach Gonzalez Sosa 
+
+- The 'lan' client returns the correct value (bsc#1140199).
+- 4.2.8
+
+---
+Wed Jul  3 13:18:05 UTC 2019 - Knut Anderssen 
+
+- bsc#1137346
+  - CLI: Report an error instead of raising an exception when the
+device type is not provided and there is no way to infer it
+from the given options.
+
+---
+Fri Jun 14 13:14:05 UTC 2019 - Knut Anderssen 
+
+- boo#1138297
+  - Improve some mocking in NetworkService.activate_network_service
+unit test which caused some test to fail randomly.
+- 4.2.7
+
+---
+Fri Jun 14 10:39:05 UTC 2019 - Knut Anderssen 
+
+- boo#1138278
+  - Adapt the AddressDialog to use the new Y2Network::Routing class
+when checking if there is some default gateway defined.
+- 4.2.6
+
+---
+Thu Jun 12 11:55:48 UTC 2019 - Knut Anderssen 
+
+- bsc#1136929
+  - Use the hwinfo permanent mac address instead of the current mac
+which could be wrong in case of an enslaved interface.
+- bsc#1137324
+  - Do not create duplicate udev rule attributes when editing an
+interface name.
+- boo#903889
+  - When proposing a bridge configuration for virtualization, move
+the routes from the enslaved interface to the new bridge.
+- 4.2.5
+
+---
+Fri Jun  7 23:57:54 UTC 2019 - Stasiek Michalski 
+
+- Use new schema of desktop files (boo#1084864)
+- Clean up spec
+- Rename desktop files
+- 4.2.4
+
+---
+Mon May 20 14:04:47 UTC 2019 - Michal Filka 
+
+- bnc#1131588
+  - display a confirmation popup when static route is going to be
+removed when switching a device to dhcp
+- 4.2.3
+
+---

Old:

  yast2-network-4.2.2.tar.bz2

New:

  yast2-network-4.2.11.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.XPf3mv/_old  2019-07-31 14:26:52.958245483 +0200
+++ /var/tmp/diff_new_pack.XPf3mv/_new  2019-07-31 14:26:52.962245480 +0200
@@ -17,60 +17,58 @@
 
 
 Name:   yast2-network
-Version:4.2.2
+Version:4.2.11
 Release:0
-BuildArch:  noarch
-
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Summary:YaST2 - Network Configuration
+License:GPL-2.0-only
+Group:  System/YaST
 Url:https://github.com/yast/yast-network
+
 Source0:%{name}-%{version}.tar.bz2
 
+# testsuite
 BuildRequires:  update-desktop-files
 BuildRequires:  yast2-devtools >= 3.1.15
-Requires:   yast2-proxy
+BuildRequires:  rubygem(%rb_default_ruby_abi:rspec)
 #for install task
+BuildRequires:  yast2-storage-ng
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
-
 # Y2Firewall interface zone mapping methods
 BuildRequires:  yast2 >= 4.1.53
-Requires:   yast2 >= 4.1.53
-
+BuildRequires:  yast2-packager >= 4.0.18
 # Product control need xml agent
 BuildRequires:  yast2-xml
-Requires:   yast2-xml
+# cfa for parsing hosts
+BuildRequires:  rubygem(%rb_default_ruby_abi:cfa) >= 0.6.4
+# lenses are needed to use cfa

commit yast2-network for openSUSE:Factory

2019-04-28 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-04-28 20:00:03

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.5536 (New)


Package is "yast2-network"

Sun Apr 28 20:00:03 2019 rev:407 rq:697551 version:4.2.2

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-04-08 10:34:32.099222419 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.5536/yast2-network.changes
2019-04-28 20:00:05.654911744 +0200
@@ -1,0 +2,19 @@
+Wed Apr 24 12:44:18 UTC 2019 - knut.anders...@suse.com
+
+- Started with yast2-network refactorization:
+  - Added the y2network namespace.
+  - Dropped not used routing_auto client.
+  - Reimplemented completely routing configuration droping the old
+Yast::Routing module.
+  - The Y2Network::Routing configuration permits to have multiple
+default routes and does not drop extra options for them. That
+is, different routing tables can be used. (fate#326796)
+- 4.2.2
+
+---
+Mon Apr 22 16:41:51 UTC 2019 - Imobach Gonzalez Sosa 
+
+- Fix mode/second_stage value initialization (bsc#1132057)
+- 4.2.1
+
+---

Old:

  yast2-network-4.2.0.tar.bz2

New:

  yast2-network-4.2.2.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.8RTtYq/_old  2019-04-28 20:00:06.578911187 +0200
+++ /var/tmp/diff_new_pack.8RTtYq/_new  2019-04-28 20:00:06.578911187 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.2.0
+Version:4.2.2
 Release:0
 BuildArch:  noarch
 
@@ -88,11 +88,8 @@
 
 %files
 %defattr(-,root,root)
-%{yast_ybindir}/*
 %{yast_yncludedir}/network
 %{yast_clientdir}/*.rb
-%dir %{yast_moduledir}/YaPI
-%{yast_moduledir}/YaPI/NETWORK.pm
 %{yast_moduledir}/*.rb
 %{yast_desktopdir}/*.desktop
 %{yast_scrconfdir}/*.scr

++ yast2-network-4.2.0.tar.bz2 -> yast2-network-4.2.2.tar.bz2 ++
 13547 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2019-04-08 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-04-08 10:34:26

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.3908 (New)


Package is "yast2-network"

Mon Apr  8 10:34:26 2019 rev:406 rq:691722 version:4.2.0

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-03-25 09:47:40.248010431 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.3908/yast2-network.changes
2019-04-08 10:34:32.099222419 +0200
@@ -1,0 +2,21 @@
+Fri Apr  5 07:53:29 UTC 2019 - jreidinger 
+
+- publish find dhcp interfaces to component system, so yapi can be
+  dropped from yast2-samba-client (fate#323734)
+- 4.2.0
+
+---
+Thu Apr  4 16:46:27 UTC 2019 - knut.anders...@suse.com
+
+- bnc#1129012
+  - AY: Use the bus_id of the udev parent device when using virtio
+netcards and matching the existent rules with the defined in
+in the profile.
+- 4.1.45
+
+---
+Thu Apr  4 16:44:58 CET 2019 - sch...@suse.de
+
+- Showing correct start mode for nfsroot device (bsc#1105692).
+
+---

Old:

  yast2-network-4.1.44.tar.bz2

New:

  yast2-network-4.2.0.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.stmseN/_old  2019-04-08 10:34:33.835222743 +0200
+++ /var/tmp/diff_new_pack.stmseN/_new  2019-04-08 10:34:33.863222748 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.44
+Version:4.2.0
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.44.tar.bz2 -> yast2-network-4.2.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.44/Dockerfile 
new/yast2-network-4.2.0/Dockerfile
--- old/yast2-network-4.1.44/Dockerfile 2019-03-21 14:33:39.0 +0100
+++ new/yast2-network-4.2.0/Dockerfile  2019-04-05 10:05:31.0 +0200
@@ -1,3 +1,3 @@
-FROM yastdevel/ruby
+FROM registry.opensuse.org/yast/head/containers/yast-ruby:latest
 COPY . /usr/src/app
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.44/package/yast2-network.changes 
new/yast2-network-4.2.0/package/yast2-network.changes
--- old/yast2-network-4.1.44/package/yast2-network.changes  2019-03-21 
14:33:39.0 +0100
+++ new/yast2-network-4.2.0/package/yast2-network.changes   2019-04-05 
10:05:31.0 +0200
@@ -1,4 +1,25 @@
 ---
+Fri Apr  5 07:53:29 UTC 2019 - jreidinger 
+
+- publish find dhcp interfaces to component system, so yapi can be
+  dropped from yast2-samba-client (fate#323734)
+- 4.2.0
+
+---
+Thu Apr  4 16:46:27 UTC 2019 - knut.anders...@suse.com
+
+- bnc#1129012
+  - AY: Use the bus_id of the udev parent device when using virtio
+netcards and matching the existent rules with the defined in
+in the profile.
+- 4.1.45
+
+---
+Thu Apr  4 16:44:58 CET 2019 - sch...@suse.de
+
+- Showing correct start mode for nfsroot device (bsc#1105692).
+
+---
 Thu Mar 21 10:09:32 UTC 2019 - knut.anders...@suse.com
 
 - bnc#1094934
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.44/package/yast2-network.spec 
new/yast2-network-4.2.0/package/yast2-network.spec
--- old/yast2-network-4.1.44/package/yast2-network.spec 2019-03-21 
14:33:39.0 +0100
+++ new/yast2-network-4.2.0/package/yast2-network.spec  2019-04-05 
10:05:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.44
+Version:4.2.0
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.44/src/include/network/routines.rb 
new/yast2-network-4.2.0/src/include/network/routines.rb
--- old/yast2-network-4.1.44/src/include/network/routines.rb2019-03-21 
14:33:39.0 +0100
+++ new/yast2-network-4.2.0/src/include/network/routines.rb 2019-04-05 
10:05:31.0 +0200
@@ -628,6 +628,9 @@
 
   one["bus"] = bus
   one["busid"] = card["sysfs_bus_id"] || ""
+  if one["busid"].start_with?("virtio")
+one["parent_busid"] = one["sysfs_id"].split("/")[-2]
+  end
   

commit yast2-network for openSUSE:Factory

2019-03-25 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-03-25 09:47:36

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.25356 (New)


Package is "yast2-network"

Mon Mar 25 09:47:36 2019 rev:405 rq:687329 version:4.1.44

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-03-06 19:03:22.429075342 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.25356/yast2-network.changes   
2019-03-25 09:47:40.248010431 +0100
@@ -1,0 +2,8 @@
+Thu Mar 21 10:09:32 UTC 2019 - knut.anders...@suse.com
+
+- bnc#1094934
+  - Fixed internal error when writing remote configuration by
+cmdline (yast remote allow set=yes).
+- 4.1.44
+
+---

Old:

  yast2-network-4.1.43.tar.bz2

New:

  yast2-network-4.1.44.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.fgyd9W/_old  2019-03-25 09:47:41.240010288 +0100
+++ /var/tmp/diff_new_pack.fgyd9W/_new  2019-03-25 09:47:41.244010288 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.43
+Version:4.1.44
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.43.tar.bz2 -> yast2-network-4.1.44.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.43/package/yast2-network.changes 
new/yast2-network-4.1.44/package/yast2-network.changes
--- old/yast2-network-4.1.43/package/yast2-network.changes  2019-03-06 
13:21:33.0 +0100
+++ new/yast2-network-4.1.44/package/yast2-network.changes  2019-03-21 
14:33:39.0 +0100
@@ -1,4 +1,12 @@
 ---
+Thu Mar 21 10:09:32 UTC 2019 - knut.anders...@suse.com
+
+- bnc#1094934
+  - Fixed internal error when writing remote configuration by
+cmdline (yast remote allow set=yes).
+- 4.1.44
+
+---
 Wed Mar  6 12:08:05 UTC 2019 - Ladislav Slezák 
 
 - Fixed "can't modify frozen String" crashes (related to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.43/package/yast2-network.spec 
new/yast2-network-4.1.44/package/yast2-network.spec
--- old/yast2-network-4.1.43/package/yast2-network.spec 2019-03-06 
13:21:33.0 +0100
+++ new/yast2-network-4.1.44/package/yast2-network.spec 2019-03-21 
14:33:39.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.43
+Version:4.1.44
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.43/src/clients/remote.rb 
new/yast2-network-4.1.44/src/clients/remote.rb
--- old/yast2-network-4.1.43/src/clients/remote.rb  2019-03-06 
13:21:33.0 +0100
+++ new/yast2-network-4.1.44/src/clients/remote.rb  2019-03-21 
14:33:39.0 +0100
@@ -168,7 +168,7 @@
   )
   allow_ra == "yes" ? remote.enable! : remote.disable!
 
-  remote.Write
+  remote.write
 end
   end
 end




commit yast2-network for openSUSE:Factory

2019-03-06 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-03-06 19:03:18

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Wed Mar  6 19:03:18 2019 rev:404 rq:682134 version:4.1.43

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-02-28 21:48:54.929383865 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-03-06 19:03:22.429075342 +0100
@@ -1,0 +2,7 @@
+Wed Mar  6 12:08:05 UTC 2019 - Ladislav Slezák 
+
+- Fixed "can't modify frozen String" crashes (related to
+  bsc#1125006 and gh#yast/yast-ruby-bindings#228)
+- 4.1.43
+
+---

Old:

  yast2-network-4.1.42.tar.bz2

New:

  yast2-network-4.1.43.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.2qgn38/_old  2019-03-06 19:03:23.597075062 +0100
+++ /var/tmp/diff_new_pack.2qgn38/_new  2019-03-06 19:03:23.597075062 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.42
+Version:4.1.43
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.42.tar.bz2 -> yast2-network-4.1.43.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.42/package/yast2-network.changes 
new/yast2-network-4.1.43/package/yast2-network.changes
--- old/yast2-network-4.1.42/package/yast2-network.changes  2019-02-28 
17:21:23.0 +0100
+++ new/yast2-network-4.1.43/package/yast2-network.changes  2019-03-06 
13:21:33.0 +0100
@@ -1,4 +1,11 @@
 ---
+Wed Mar  6 12:08:05 UTC 2019 - Ladislav Slezák 
+
+- Fixed "can't modify frozen String" crashes (related to
+  bsc#1125006 and gh#yast/yast-ruby-bindings#228)
+- 4.1.43
+
+---
 Wed Feb 27 15:08:09 UTC 2019 - knut.anders...@suse.com
 
 - Installation proposal (bsc#1127228, bsc#1124478, bsc#1124498):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.42/package/yast2-network.spec 
new/yast2-network-4.1.43/package/yast2-network.spec
--- old/yast2-network-4.1.42/package/yast2-network.spec 2019-02-28 
17:21:23.0 +0100
+++ new/yast2-network-4.1.43/package/yast2-network.spec 2019-03-06 
13:21:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.42
+Version:4.1.43
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.42/src/lib/y2network/widgets/firewall_zone.rb 
new/yast2-network-4.1.43/src/lib/y2network/widgets/firewall_zone.rb
--- old/yast2-network-4.1.42/src/lib/y2network/widgets/firewall_zone.rb 
2019-02-28 17:21:23.0 +0100
+++ new/yast2-network-4.1.43/src/lib/y2network/widgets/firewall_zone.rb 
2019-03-06 13:21:33.0 +0100
@@ -113,7 +113,7 @@
 "The selected ZONE will be added to the ifcfg as well as the 
firewalld " \
 "permanent configuration.")
 
-help_text << zones_help if installed?
+help_text += zones_help if installed?
 help_text
   end
 




commit yast2-network for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-02-28 21:48:52

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Thu Feb 28 21:48:52 2019 rev:403 rq:680177 version:4.1.42

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-02-15 09:53:27.607796768 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-02-28 21:48:54.929383865 +0100
@@ -1,0 +2,33 @@
+Wed Feb 27 15:08:09 UTC 2019 - knut.anders...@suse.com
+
+- Installation proposal (bsc#1127228, bsc#1124478, bsc#1124498):
+  - Fixed issue refreshing the list of packages needed for the
+default backend the first time the proposal is called.
+  - Do not cache the default network backend but only the current
+one when modified by the user in the proposal
+  - Fallback to :wicked when saving the network if NetworkManager
+is selected as the service to be used but not installed.
+- 4.1.42
+
+---
+Thu Feb 21 17:50:32 UTC 2019 - knut.anders...@suse.com
+
+- When renaming an interface (bsc#1060207):
+  - Offer to the user the option to update device routes that
+belongs to the previous interface name.
+  - Update the Routing devices list with the new one when needed.
+- Do not drop configured elements from the list when canceling
+  an edition (bsc#998540)
+- 4.1.41
+
+---
+Tue Feb 19 09:31:26 UTC 2019 - knut.anders...@suse.com
+
+- Installation proposal (bsc#1124478, bsc#1124498):
+  - Do not offer NetworkManager when the package is not available
+  - Respect the network backend selected in the proposal at the end
+of the installation
+  - Removed the hostname write (127.0.0.2) from the summary
+- 4.1.40
+
+---

Old:

  yast2-network-4.1.39.tar.bz2

New:

  yast2-network-4.1.42.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.lkjlMu/_old  2019-02-28 21:48:55.525383610 +0100
+++ /var/tmp/diff_new_pack.lkjlMu/_new  2019-02-28 21:48:55.529383609 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.39
+Version:4.1.42
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.39.tar.bz2 -> yast2-network-4.1.42.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.39/package/yast2-network.changes 
new/yast2-network-4.1.42/package/yast2-network.changes
--- old/yast2-network-4.1.39/package/yast2-network.changes  2019-02-13 
09:23:15.0 +0100
+++ new/yast2-network-4.1.42/package/yast2-network.changes  2019-02-28 
17:21:23.0 +0100
@@ -1,4 +1,37 @@
 ---
+Wed Feb 27 15:08:09 UTC 2019 - knut.anders...@suse.com
+
+- Installation proposal (bsc#1127228, bsc#1124478, bsc#1124498):
+  - Fixed issue refreshing the list of packages needed for the
+default backend the first time the proposal is called.
+  - Do not cache the default network backend but only the current
+one when modified by the user in the proposal
+  - Fallback to :wicked when saving the network if NetworkManager
+is selected as the service to be used but not installed.
+- 4.1.42
+
+---
+Thu Feb 21 17:50:32 UTC 2019 - knut.anders...@suse.com
+
+- When renaming an interface (bsc#1060207):
+  - Offer to the user the option to update device routes that
+belongs to the previous interface name.
+  - Update the Routing devices list with the new one when needed.
+- Do not drop configured elements from the list when canceling
+  an edition (bsc#998540)
+- 4.1.41
+
+---
+Tue Feb 19 09:31:26 UTC 2019 - knut.anders...@suse.com
+
+- Installation proposal (bsc#1124478, bsc#1124498):
+  - Do not offer NetworkManager when the package is not available
+  - Respect the network backend selected in the proposal at the end
+of the installation
+  - Removed the hostname write (127.0.0.2) from the summary
+- 4.1.40
+
+---
 Tue Feb 12 13:21:39 CET 2019 - sch...@suse.de
 
 - AutoYaST in running system: Do not reset /etc/hosts (bsc#1122658)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.39/package/yast2-network.spec 

commit yast2-network for openSUSE:Factory

2019-02-15 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-02-15 09:53:27

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Fri Feb 15 09:53:27 2019 rev:402 rq:674412 version:4.1.39

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-02-11 21:17:05.299346748 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-02-15 09:53:27.607796768 +0100
@@ -1,0 +2,17 @@
+Tue Feb 12 13:21:39 CET 2019 - sch...@suse.de
+
+- AutoYaST in running system: Do not reset /etc/hosts (bsc#1122658)
+- 4.1.39
+
+---
+Thu Feb  7 13:13:21 UTC 2019 - knut.anders...@suse.com
+
+- fate#324662
+  - Drop SuSEFirewall2 code completely.
+  - Permits to choose not only default firewalld zones but also
+custom ones.
+  - Allow the user to select the "DEFAULT" zone or disable the
+interface zone mapping through ifcfg files per interface.
+- 4.1.38
+
+---

Old:

  yast2-network-4.1.37.tar.bz2

New:

  yast2-network-4.1.39.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.CfzHGq/_old  2019-02-15 09:53:28.011796641 +0100
+++ /var/tmp/diff_new_pack.CfzHGq/_new  2019-02-15 09:53:28.019796639 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.37
+Version:4.1.39
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# Yast::Execute.stdout.on_target!
-BuildRequires:  yast2 >= 4.1.42
-Requires:   yast2 >= 4.1.42
+# Y2Firewall interface zone mapping methods
+BuildRequires:  yast2 >= 4.1.53
+Requires:   yast2 >= 4.1.53
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -100,6 +100,7 @@
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
+%{yast_libdir}/y2network
 %{yast_libdir}/y2remote
 %{yast_libdir}/cfa/
 %{yast_ydatadir}/network

++ yast2-network-4.1.37.tar.bz2 -> yast2-network-4.1.39.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.37/package/yast2-network.changes 
new/yast2-network-4.1.39/package/yast2-network.changes
--- old/yast2-network-4.1.37/package/yast2-network.changes  2019-02-06 
16:19:48.0 +0100
+++ new/yast2-network-4.1.39/package/yast2-network.changes  2019-02-13 
09:23:15.0 +0100
@@ -1,4 +1,21 @@
 ---
+Tue Feb 12 13:21:39 CET 2019 - sch...@suse.de
+
+- AutoYaST in running system: Do not reset /etc/hosts (bsc#1122658)
+- 4.1.39
+
+---
+Thu Feb  7 13:13:21 UTC 2019 - knut.anders...@suse.com
+
+- fate#324662
+  - Drop SuSEFirewall2 code completely.
+  - Permits to choose not only default firewalld zones but also
+custom ones.
+  - Allow the user to select the "DEFAULT" zone or disable the
+interface zone mapping through ifcfg files per interface.
+- 4.1.38
+
+---
 Wed Feb  6 14:16:54 UTC 2019 - knut.anders...@suse.com
 
 - bsc#1124002
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.37/package/yast2-network.spec 
new/yast2-network-4.1.39/package/yast2-network.spec
--- old/yast2-network-4.1.37/package/yast2-network.spec 2019-02-06 
16:19:48.0 +0100
+++ new/yast2-network-4.1.39/package/yast2-network.spec 2019-02-13 
09:23:15.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.37
+Version:4.1.39
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# Yast::Execute.stdout.on_target!
-BuildRequires:  yast2 >= 4.1.42
-Requires:   yast2 >= 4.1.42
+# Y2Firewall interface zone mapping methods
+BuildRequires:  yast2 >= 4.1.53
+Requires:   yast2 >= 4.1.53
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -100,6 +100,7 @@
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
+%{yast_libdir}/y2network
 %{yast_libdir}/y2remote
 %{yast_libdir}/cfa/
 %{yast_ydatadir}/network
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-network for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-02-11 21:17:01

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Mon Feb 11 21:17:01 2019 rev:401 rq:672185 version:4.1.37

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-02-04 16:09:46.501996863 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-02-11 21:17:05.299346748 +0100
@@ -1,0 +2,8 @@
+Wed Feb  6 14:16:54 UTC 2019 - knut.anders...@suse.com
+
+- bsc#1124002
+  - do not crash when cloning and trying to read a device protocol
+or portname.
+- 4.1.37
+
+---

Old:

  yast2-network-4.1.36.tar.bz2

New:

  yast2-network-4.1.37.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.93SrTJ/_old  2019-02-11 21:17:05.831346466 +0100
+++ /var/tmp/diff_new_pack.93SrTJ/_new  2019-02-11 21:17:05.835346465 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.36
+Version:4.1.37
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.36.tar.bz2 -> yast2-network-4.1.37.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.36/package/yast2-network.changes 
new/yast2-network-4.1.37/package/yast2-network.changes
--- old/yast2-network-4.1.36/package/yast2-network.changes  2019-01-31 
10:14:34.0 +0100
+++ new/yast2-network-4.1.37/package/yast2-network.changes  2019-02-06 
16:19:48.0 +0100
@@ -1,4 +1,12 @@
 ---
+Wed Feb  6 14:16:54 UTC 2019 - knut.anders...@suse.com
+
+- bsc#1124002
+  - do not crash when cloning and trying to read a device protocol
+or portname.
+- 4.1.37
+
+---
 Tue Jan 29 10:32:17 UTC 2019 - mfi...@suse.com
 
 - bnc#1123102
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.36/package/yast2-network.spec 
new/yast2-network-4.1.37/package/yast2-network.spec
--- old/yast2-network-4.1.36/package/yast2-network.spec 2019-01-31 
10:14:34.0 +0100
+++ new/yast2-network-4.1.37/package/yast2-network.spec 2019-02-06 
16:19:48.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.36
+Version:4.1.37
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.36/src/modules/LanItems.rb 
new/yast2-network-4.1.37/src/modules/LanItems.rb
--- old/yast2-network-4.1.36/src/modules/LanItems.rb2019-01-31 
10:14:34.0 +0100
+++ new/yast2-network-4.1.37/src/modules/LanItems.rb2019-02-06 
16:19:48.0 +0100
@@ -2698,9 +2698,15 @@
   if !chan_ids["stdout"].empty?
 chanids = String.CutBlanks(Ops.get_string(chan_ids, "stdout", ""))
   end
+
   # we already know that kernel device exist, otherwise next above 
would apply
-  portname = 
::File.read("/sys/class/net/#{device}/device/portname").strip
-  protocol = 
::File.read("/sys/class/net/#{device}/device/protocol").strip
+  # FIXME: It seems that it is not always the case (bsc#1124002)
+  portname_file = "/sys/class/net/#{device}/device/portname"
+  portname = ::File.exist?(portname_file) ? 
::File.read(portname_file).strip : ""
+
+  protocol_file = "/sys/class/net/#{device}/device/protocol"
+  protocol = ::File.exist?(protocol_file) ? 
::File.read(protocol_file).strip : ""
+
   layer2_ret = SCR.Execute(
 path(".target.bash"),
 Builtins.sformat(




commit yast2-network for openSUSE:Factory

2019-02-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-02-04 16:09:42

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Mon Feb  4 16:09:42 2019 rev:400 rq:670281 version:4.1.36

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-01-24 14:01:08.416207151 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-02-04 16:09:46.501996863 +0100
@@ -1,0 +2,16 @@
+Tue Jan 29 10:32:17 UTC 2019 - mfi...@suse.com
+
+- bnc#1123102
+  - do not crash with internal error when no hostname is set when
+submitting device with static configuration
+- 4.1.36
+
+---
+Fri Jan 25 13:24:03 UTC 2019 - knut.anders...@suse.com
+
+- bsc#112952
+  - Try to install the wireless-tools package when the package is
+not installed and the wifi networks are scanned.
+- 4.1.35
+
+---

Old:

  yast2-network-4.1.34.tar.bz2

New:

  yast2-network-4.1.36.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.NWW9QN/_old  2019-02-04 16:09:47.125996475 +0100
+++ /var/tmp/diff_new_pack.NWW9QN/_new  2019-02-04 16:09:47.129996471 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.34
+Version:4.1.36
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.34.tar.bz2 -> yast2-network-4.1.36.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.34/package/yast2-network.changes 
new/yast2-network-4.1.36/package/yast2-network.changes
--- old/yast2-network-4.1.34/package/yast2-network.changes  2019-01-23 
11:43:01.0 +0100
+++ new/yast2-network-4.1.36/package/yast2-network.changes  2019-01-31 
10:14:34.0 +0100
@@ -1,4 +1,20 @@
 ---
+Tue Jan 29 10:32:17 UTC 2019 - mfi...@suse.com
+
+- bnc#1123102
+  - do not crash with internal error when no hostname is set when
+submitting device with static configuration
+- 4.1.36
+
+---
+Fri Jan 25 13:24:03 UTC 2019 - knut.anders...@suse.com
+
+- bsc#112952
+  - Try to install the wireless-tools package when the package is
+not installed and the wifi networks are scanned.
+- 4.1.35
+
+---
 Wed Jan 23 08:52:03 UTC 2019 - mfi...@suse.com
 
 - bnc#1122387
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.34/package/yast2-network.spec 
new/yast2-network-4.1.36/package/yast2-network.spec
--- old/yast2-network-4.1.34/package/yast2-network.spec 2019-01-23 
11:43:01.0 +0100
+++ new/yast2-network-4.1.36/package/yast2-network.spec 2019-01-31 
10:14:34.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.34
+Version:4.1.36
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.34/src/include/network/lan/address.rb 
new/yast2-network-4.1.36/src/include/network/lan/address.rb
--- old/yast2-network-4.1.34/src/include/network/lan/address.rb 2019-01-23 
11:43:01.0 +0100
+++ new/yast2-network-4.1.36/src/include/network/lan/address.rb 2019-01-31 
10:14:34.0 +0100
@@ -1129,7 +1129,12 @@
 end
 
 def address_tab
-  type = LanItems.GetCurrentType
+  # in case that ifcfg does not exist, /sys might not cointain
+  # any device info (especially for virtual devices like vlan)
+  # @type variable is already initialized by @see HardwareDialog
+  # resp its storage handler @see storeHW
+  type = LanItems.type
+
   drvtype = DriverType(type)
   is_ptp = drvtype == "ctc" || drvtype == "iucv"
   # TODO: dynamic for dummy. or add dummy from outside?
@@ -1350,8 +1355,6 @@
 
   Builtins.y2milestone("ShowAndRun: %1", ret)
 
-  LanItems.Rollback if ret == :abort
-
   if ret != :back && ret != :abort
 # general tab
 LanItems.startmode = Ops.get_string(@settings, "STARTMODE", "")
@@ -1521,7 +1524,7 @@
   names = Host.names(LanItems.ipaddr).first
   Host.remove_ip(LanItems.ipaddr)
 
-  if ip_changed && !hostname_changed
+  if ip_changed && !hostname_changed && !names.nil?
 log.info("Dropping record for #{LanItems.ipaddr} from /etc/hosts")
 
  

commit yast2-network for openSUSE:Factory

2019-01-24 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-01-24 14:01:05

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Thu Jan 24 14:01:05 2019 rev:399 rq:667971 version:4.1.34

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-01-10 15:16:19.694748051 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-01-24 14:01:08.416207151 +0100
@@ -1,0 +2,36 @@
+Wed Jan 23 08:52:03 UTC 2019 - mfi...@suse.com
+
+- bnc#1122387
+  - do not crash with internal error when modifying /etc/hosts
+- 4.1.34 
+
+---
+Tue Jan 22 09:27:44 UTC 2019 - mfi...@suse.com
+
+- bnc#1122517
+  - do not crash with internal error when cloning /etc/hosts
+- 4.1.33 
+
+---
+Fri Jan 18 09:41:56 UTC 2019 - mfi...@suse.com
+
+- bnc#1122307
+  - do not crash with internal error when adding new device
+- 4.1.32 
+
+---
+Fri Jan 18 09:40:00 CET 2019 - sch...@suse.de
+
+- AutoYaST write settings: Fixed crash while reading MAC address
+  (bsc#1121087).
+- 4.1.31
+
+---
+Wed Jan 16 09:23:11 UTC 2019 - mfi...@suse.com
+
+- bnc#1121421
+  - do not crash with internal error when installing using
+AutoYaST profile with networking section
+- 4.1.30 
+
+---

Old:

  yast2-network-4.1.29.tar.bz2

New:

  yast2-network-4.1.34.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.NA9gNS/_old  2019-01-24 14:01:09.468205952 +0100
+++ /var/tmp/diff_new_pack.NA9gNS/_new  2019-01-24 14:01:09.472205948 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.29
+Version:4.1.34
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.29.tar.bz2 -> yast2-network-4.1.34.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.29/package/yast2-network.changes 
new/yast2-network-4.1.34/package/yast2-network.changes
--- old/yast2-network-4.1.29/package/yast2-network.changes  2019-01-10 
10:06:06.0 +0100
+++ new/yast2-network-4.1.34/package/yast2-network.changes  2019-01-23 
11:43:01.0 +0100
@@ -1,4 +1,40 @@
 ---
+Wed Jan 23 08:52:03 UTC 2019 - mfi...@suse.com
+
+- bnc#1122387
+  - do not crash with internal error when modifying /etc/hosts
+- 4.1.34 
+
+---
+Tue Jan 22 09:27:44 UTC 2019 - mfi...@suse.com
+
+- bnc#1122517
+  - do not crash with internal error when cloning /etc/hosts
+- 4.1.33 
+
+---
+Fri Jan 18 09:41:56 UTC 2019 - mfi...@suse.com
+
+- bnc#1122307
+  - do not crash with internal error when adding new device
+- 4.1.32 
+
+---
+Fri Jan 18 09:40:00 CET 2019 - sch...@suse.de
+
+- AutoYaST write settings: Fixed crash while reading MAC address
+  (bsc#1121087).
+- 4.1.31
+
+---
+Wed Jan 16 09:23:11 UTC 2019 - mfi...@suse.com
+
+- bnc#1121421
+  - do not crash with internal error when installing using
+AutoYaST profile with networking section
+- 4.1.30 
+
+---
 Thu Jan 10 08:29:43 UTC 2019 - mfi...@suse.com
 
 - bnc#483
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.29/package/yast2-network.spec 
new/yast2-network-4.1.34/package/yast2-network.spec
--- old/yast2-network-4.1.29/package/yast2-network.spec 2019-01-10 
10:06:06.0 +0100
+++ new/yast2-network-4.1.34/package/yast2-network.spec 2019-01-23 
11:43:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.29
+Version:4.1.34
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.29/src/clients/host_auto.rb 
new/yast2-network-4.1.34/src/clients/host_auto.rb
--- old/yast2-network-4.1.29/src/clients/host_auto.rb   2019-01-10 
10:06:06.0 +0100
+++ new/yast2-network-4.1.34/src/clients/host_auto.rb   2019-01-23 
11:43:01.0 

commit yast2-network for openSUSE:Factory

2019-01-10 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-01-10 15:16:17

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Thu Jan 10 15:16:17 2019 rev:398 rq:664300 version:4.1.29

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2019-01-05 14:40:38.956567289 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-01-10 15:16:19.694748051 +0100
@@ -1,0 +2,13 @@
+Thu Jan 10 08:29:43 UTC 2019 - mfi...@suse.com
+
+- bnc#483
+  - write physical device into vlan's configuration
+- 4.1.29
+
+---
+Fri Jan  4 15:59:29 CET 2019 - sch...@suse.de
+
+- Added needed method GetDHCPHostnameIP again (bsc#1119690).
+- 4.1.28
+
+---

Old:

  yast2-network-4.1.27.tar.bz2

New:

  yast2-network-4.1.29.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.uDyBHy/_old  2019-01-10 15:16:20.130747633 +0100
+++ /var/tmp/diff_new_pack.uDyBHy/_new  2019-01-10 15:16:20.134747629 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.27
+Version:4.1.29
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# Yast2::Systemd::Socket
-BuildRequires:  yast2 >= 4.1.3
-Requires:   yast2 >= 4.1.3
+# Yast::Execute.stdout.on_target!
+BuildRequires:  yast2 >= 4.1.42
+Requires:   yast2 >= 4.1.42
 
 # Product control need xml agent
 BuildRequires:  yast2-xml

++ yast2-network-4.1.27.tar.bz2 -> yast2-network-4.1.29.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.27/package/yast2-network.changes 
new/yast2-network-4.1.29/package/yast2-network.changes
--- old/yast2-network-4.1.27/package/yast2-network.changes  2019-01-04 
11:33:34.0 +0100
+++ new/yast2-network-4.1.29/package/yast2-network.changes  2019-01-10 
10:06:06.0 +0100
@@ -1,4 +1,17 @@
 ---
+Thu Jan 10 08:29:43 UTC 2019 - mfi...@suse.com
+
+- bnc#483
+  - write physical device into vlan's configuration
+- 4.1.29
+
+---
+Fri Jan  4 15:59:29 CET 2019 - sch...@suse.de
+
+- Added needed method GetDHCPHostnameIP again (bsc#1119690).
+- 4.1.28
+
+---
 Fri Jan  4 09:46:06 UTC 2019 - mfi...@suse.com
 
 - bnc#1116568
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.27/package/yast2-network.spec 
new/yast2-network-4.1.29/package/yast2-network.spec
--- old/yast2-network-4.1.27/package/yast2-network.spec 2019-01-04 
11:33:34.0 +0100
+++ new/yast2-network-4.1.29/package/yast2-network.spec 2019-01-10 
10:06:06.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.27
+Version:4.1.29
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# Yast2::Systemd::Socket
-BuildRequires:  yast2 >= 4.1.3
-Requires:   yast2 >= 4.1.3
+# Yast::Execute.stdout.on_target!
+BuildRequires:  yast2 >= 4.1.42
+Requires:   yast2 >= 4.1.42
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.27/src/include/network/lan/complex.rb 
new/yast2-network-4.1.29/src/include/network/lan/complex.rb
--- old/yast2-network-4.1.27/src/include/network/lan/complex.rb 2019-01-04 
11:33:34.0 +0100
+++ new/yast2-network-4.1.29/src/include/network/lan/complex.rb 2019-01-10 
10:06:06.0 +0100
@@ -186,7 +186,6 @@
 [LanItems.current, "ifcfg"],
 Ops.get_string(LanItems.getCurrentItem, ["hwinfo", "dev_name"], "")
   )
-  Ops.set(LanItems.Items, [LanItems.current, "commited"], false)
   LanItems.operation = :edit
   fw = ""
   if LanItems.needFirmwareCurrentItem
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.27/src/modules/DNS.rb 
new/yast2-network-4.1.29/src/modules/DNS.rb
--- old/yast2-network-4.1.27/src/modules/DNS.rb 2019-01-04 11:33:34.0 
+0100
+++ new/yast2-network-4.1.29/src/modules/DNS.rb 2019-01-10 10:06:06.0 
+0100
@@ -474,7 

commit yast2-network for openSUSE:Factory

2019-01-05 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2019-01-05 14:40:37

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Sat Jan  5 14:40:37 2019 rev:397 rq:662768 version:4.1.27

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-12-31 09:44:50.174292918 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2019-01-05 14:40:38.956567289 +0100
@@ -1,0 +2,13 @@
+Fri Jan  4 09:46:06 UTC 2019 - mfi...@suse.com
+
+- bnc#1116568
+  - /etc/hosts load performance improvements
+- 4.1.27
+
+---
+Wed Jan  2 17:17:58 CET 2019 - sch...@suse.de
+
+- Showing correct start mode for nfsroot device (bsc#1105692).
+- 4.1.26
+
+---

Old:

  yast2-network-4.1.25.tar.bz2

New:

  yast2-network-4.1.27.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.YsjQAV/_old  2019-01-05 14:40:39.492566834 +0100
+++ /var/tmp/diff_new_pack.YsjQAV/_new  2019-01-05 14:40:39.496566831 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.25
+Version:4.1.27
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.25.tar.bz2 -> yast2-network-4.1.27.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.25/package/yast2-network.changes 
new/yast2-network-4.1.27/package/yast2-network.changes
--- old/yast2-network-4.1.25/package/yast2-network.changes  2018-12-19 
10:54:51.0 +0100
+++ new/yast2-network-4.1.27/package/yast2-network.changes  2019-01-04 
11:33:34.0 +0100
@@ -1,4 +1,17 @@
 ---
+Fri Jan  4 09:46:06 UTC 2019 - mfi...@suse.com
+
+- bnc#1116568
+  - /etc/hosts load performance improvements
+- 4.1.27
+
+---
+Wed Jan  2 17:17:58 CET 2019 - sch...@suse.de
+
+- Showing correct start mode for nfsroot device (bsc#1105692).
+- 4.1.26
+
+---
 Tue Dec 18 12:49:47 UTC 2018 - mfi...@suse.com
 
 - bnc#1119723
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.25/package/yast2-network.spec 
new/yast2-network-4.1.27/package/yast2-network.spec
--- old/yast2-network-4.1.25/package/yast2-network.spec 2018-12-19 
10:54:51.0 +0100
+++ new/yast2-network-4.1.27/package/yast2-network.spec 2019-01-04 
11:33:34.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.25
+Version:4.1.27
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.25/src/clients/host.rb 
new/yast2-network-4.1.27/src/clients/host.rb
--- old/yast2-network-4.1.25/src/clients/host.rb2018-12-19 
10:54:51.0 +0100
+++ new/yast2-network-4.1.27/src/clients/host.rb2019-01-04 
11:33:34.0 +0100
@@ -96,12 +96,10 @@
 
   # main ui function
   ret = HostsMainDialog(true)
-  Builtins.y2debug("ret == %1", ret)
 
   Host.Write if ret == :next && Host.GetModified
 
   UI.CloseDialog
-  deep_copy(ret)
 end
 
 # Handler for action "list"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.25/src/include/network/services/host.rb 
new/yast2-network-4.1.27/src/include/network/services/host.rb
--- old/yast2-network-4.1.25/src/include/network/services/host.rb   
2018-12-19 10:54:51.0 +0100
+++ new/yast2-network-4.1.27/src/include/network/services/host.rb   
2019-01-04 11:33:34.0 +0100
@@ -30,6 +30,8 @@
 # Hosts configuration dialogs
 module Yast
   module NetworkServicesHostInclude
+include Logger
+
 def initialize_network_services_host(include_target)
   Yast.import "UI"
 
@@ -81,33 +83,27 @@
   "Enter a host IP Address, a Hostname, and 
optional\nHost Aliases, separated by spaces.\n"
 )
 
-  max = 0
   table_items = []
   

commit yast2-network for openSUSE:Factory

2018-12-31 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-12-31 09:44:46

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.28833 (New)


Package is "yast2-network"

Mon Dec 31 09:44:46 2018 rev:396 rq:659960 version:4.1.25

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-11-27 10:39:11.208392992 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.28833/yast2-network.changes   
2018-12-31 09:44:50.174292918 +0100
@@ -1,0 +2,50 @@
+Tue Dec 18 12:49:47 UTC 2018 - mfi...@suse.com
+
+- bnc#1119723
+  - properly copy ifcfg files from instsys to target
+- 4.1.25 
+
+---
+Mon Dec 10 14:02:40 UTC 2018 - jreidin...@suse.com
+
+- always use absolute path to binaries (bsc#1118291)
+- properly escape shell arguments (bsc#1118291)
+- 4.1.24
+
+---
+Mon Dec 10 13:21:27 UTC 2018 - Stefan Hundhammer 
+
+- Security audit fixes: Removed unused function stdout_of()
+  (part of bsc#1118291)
+- 4.1.23
+
+---
+Thu Dec  6 10:58:23 UTC 2018 - Stefan Hundhammer 
+
+- Security audit fixes: Use absolute paths when calling external
+  commands and shell-escape arguments (bsc#1118291)
+- 4.1.22
+
+---
+Tue Dec  4 09:35:40 UTC 2018 - mfi...@suse.com
+
+- bnc#1114213
+  - improved help for dns nameserver address to mention also valid
+format of IPv6
+- 4.1.21 
+
+---
+Sun Nov 29 02:07:57 UTC 2018 - Noah Davis 
+
+- Provide icon with module (boo#1109310)
+- 4.1.20
+
+---
+Mon Nov 26 11:57:35 UTC 2018 - mfi...@suse.com
+
+- bnc#934055, bnc#972463
+  - cleanup in Hostname / DNS tab - removed obsolete or unsupported
+options.
+- 4.1.19 
+
+---

Old:

  yast2-network-4.1.18.tar.bz2

New:

  yast2-network-4.1.25.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.d3EtrW/_old  2018-12-31 09:44:50.690292495 +0100
+++ /var/tmp/diff_new_pack.d3EtrW/_new  2018-12-31 09:44:50.690292495 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.18
+Version:4.1.25
 Release:0
 BuildArch:  noarch
 
@@ -101,10 +101,9 @@
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
 %{yast_libdir}/y2remote
-%dir %{yast_libdir}/cfa/
-%{yast_libdir}/cfa/hosts.rb
+%{yast_libdir}/cfa/
 %{yast_ydatadir}/network
-
+%{yast_icondir}
 %dir %{yast_docdir}
 %doc %{yast_docdir}/CONTRIBUTING.md
 %license COPYING

++ yast2-network-4.1.18.tar.bz2 -> yast2-network-4.1.25.tar.bz2 ++
 1958 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2018-11-27 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-11-27 10:39:07

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new.19453 (New)


Package is "yast2-network"

Tue Nov 27 10:39:07 2018 rev:395 rq:651993 version:4.1.18

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-11-18 23:00:42.207633536 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new.19453/yast2-network.changes   
2018-11-27 10:39:11.208392992 +0100
@@ -1,0 +2,14 @@
+Mon Nov 26 09:28:29 UTC 2018 - mfi...@suse.com
+
+- bnc#709176
+  - keep original hostnames untouched in /etc/hosts when only IP
+changed
+- 4.1.18
+
+---
+Thu Nov 22 11:54:59 UTC 2018 - mfi...@suse.com
+
+- bnc#1107470
+  - this bug is fixed since 4.0.14 (3.2.47)
+
+---

Old:

  yast2-network-4.1.17.tar.bz2

New:

  yast2-network-4.1.18.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.LDTgaZ/_old  2018-11-27 10:39:11.952392243 +0100
+++ /var/tmp/diff_new_pack.LDTgaZ/_new  2018-11-27 10:39:11.952392243 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.17
+Version:4.1.18
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.17.tar.bz2 -> yast2-network-4.1.18.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.17/package/yast2-network.changes 
new/yast2-network-4.1.18/package/yast2-network.changes
--- old/yast2-network-4.1.17/package/yast2-network.changes  2018-11-15 
09:53:16.0 +0100
+++ new/yast2-network-4.1.18/package/yast2-network.changes  2018-11-26 
12:54:27.0 +0100
@@ -1,4 +1,18 @@
 ---
+Mon Nov 26 09:28:29 UTC 2018 - mfi...@suse.com
+
+- bnc#709176
+  - keep original hostnames untouched in /etc/hosts when only IP
+changed
+- 4.1.18
+
+---
+Thu Nov 22 11:54:59 UTC 2018 - mfi...@suse.com
+
+- bnc#1107470
+  - this bug is fixed since 4.0.14 (3.2.47)
+
+---
 Sun Nov 11 16:29:30 UTC 2018 - knut.anders...@suse.com
 
 - Yast::Lan: Added method for obtaining the NTP servers offered by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.17/package/yast2-network.spec 
new/yast2-network-4.1.18/package/yast2-network.spec
--- old/yast2-network-4.1.17/package/yast2-network.spec 2018-11-15 
09:53:16.0 +0100
+++ new/yast2-network-4.1.18/package/yast2-network.spec 2018-11-26 
12:54:27.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.17
+Version:4.1.18
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.17/src/include/network/lan/address.rb 
new/yast2-network-4.1.18/src/include/network/lan/address.rb
--- old/yast2-network-4.1.17/src/include/network/lan/address.rb 2018-11-15 
09:53:16.0 +0100
+++ new/yast2-network-4.1.18/src/include/network/lan/address.rb 2018-11-26 
12:54:27.0 +0100
@@ -39,7 +39,6 @@
 
   textdomain "network"
 
-  Yast.import "Arch"
   Yast.import "CWM"
   Yast.import "CWMTab"
   Yast.import "DNS"
@@ -57,7 +56,6 @@
   Yast.import "String"
   Yast.import "SuSEFirewall4Network"
   Yast.import "Wizard"
-  Yast.import "NetworkService"
   Yast.import "Map"
 
   Yast.include include_target, "network/summary.rb"
@@ -950,20 +948,6 @@
   true
 end
 
-# Validator for network masks adresses
-# @param key [String] the widget being validated
-# @param _event [Hash] the event being handled
-# @return whether valid
-def ValidateNetmask(key, _event)
-  # TODO: general CWM improvement idea: validate and save only nondisabled
-  # widgets
-  if UI.QueryWidget(:bootproto, :CurrentButton) == :static
-ipa = Convert.to_string(UI.QueryWidget(Id(key), :Value))
-return Netmask.Check(ipa)
-  end
-  true
-end
-
 # Validator for ifcfg names
 # @param key [String] the widget being validated
 # @param _event [Hash] the event being handled
@@ -1533,10 +1517,20 @@
 
   return if !(ip_changed || hostname_changed || hostname.empty?)
 
-  log.info("Dropping record for #{LanItems.ipaddr} from /etc/hosts")
-
+  # store 

commit yast2-network for openSUSE:Factory

2018-11-18 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-11-18 22:59:47

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Nov 18 22:59:47 2018 rev:394 rq:649204 version:4.1.17

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-11-01 19:09:26.250032826 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-11-18 23:00:42.207633536 +0100
@@ -1,0 +2,14 @@
+Sun Nov 11 16:29:30 UTC 2018 - knut.anders...@suse.com
+
+- Yast::Lan: Added method for obtaining the NTP servers offered by
+  DHCP (fate#323454)
+- 4.1.17
+
+---
+Fri Nov  9 16:38:35 UTC 2018 - dgonza...@suse.com
+
+- Allow to swich the network backend from the proposal (related to
+  fate#326480)
+- 4.1.16
+
+---

Old:

  yast2-network-4.1.15.tar.bz2

New:

  yast2-network-4.1.17.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.0ppILA/_old  2018-11-18 23:00:44.051631472 +0100
+++ /var/tmp/diff_new_pack.0ppILA/_new  2018-11-18 23:00:44.055631467 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.15
+Version:4.1.17
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.15.tar.bz2 -> yast2-network-4.1.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.15/package/yast2-network.changes 
new/yast2-network-4.1.17/package/yast2-network.changes
--- old/yast2-network-4.1.15/package/yast2-network.changes  2018-10-31 
10:03:07.0 +0100
+++ new/yast2-network-4.1.17/package/yast2-network.changes  2018-11-15 
09:53:16.0 +0100
@@ -1,4 +1,18 @@
 ---
+Sun Nov 11 16:29:30 UTC 2018 - knut.anders...@suse.com
+
+- Yast::Lan: Added method for obtaining the NTP servers offered by
+  DHCP (fate#323454)
+- 4.1.17
+
+---
+Fri Nov  9 16:38:35 UTC 2018 - dgonza...@suse.com
+
+- Allow to swich the network backend from the proposal (related to
+  fate#326480)
+- 4.1.16
+
+---
 Wed Oct 31 08:37:13 UTC 2018 - mfi...@suse.com
 
 - bnc#925
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.15/package/yast2-network.spec 
new/yast2-network-4.1.17/package/yast2-network.spec
--- old/yast2-network-4.1.15/package/yast2-network.spec 2018-10-31 
10:03:07.0 +0100
+++ new/yast2-network-4.1.17/package/yast2-network.spec 2018-11-15 
09:53:16.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.15
+Version:4.1.17
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.15/src/lib/network/clients/network_proposal.rb 
new/yast2-network-4.1.17/src/lib/network/clients/network_proposal.rb
--- old/yast2-network-4.1.15/src/lib/network/clients/network_proposal.rb
2018-10-31 10:03:07.0 +0100
+++ new/yast2-network-4.1.17/src/lib/network/clients/network_proposal.rb
2018-11-15 09:53:16.0 +0100
@@ -1,3 +1,4 @@
+require "cgi"
 require "installation/proposal_client"
 
 module Yast
@@ -6,6 +7,11 @@
 include Yast::I18n
 include Yast::Logger
 
+BACKEND_LINKS = [
+  SWITCH_TO_WICKED = "network--switch-to-wicked".freeze,
+  SWITCH_TO_NETWORK_MANAGER = "network--switch-to-nm".freeze
+].freeze
+
 def initialize
   Yast.import "UI"
   Yast.import "Lan"
@@ -24,24 +30,80 @@
 
 def make_proposal(_)
   {
-"preformatted_proposal" => Yast::Lan.Summary("proposal"),
-"label_proposal"=> [Yast::LanItems.summary("one_line")]
+"preformatted_proposal" => preformatted_proposal,
+"label_proposal"=> [Yast::LanItems.summary("one_line")],
+"links" => BACKEND_LINKS
   }
 end
 
 def ask_user(args)
-  log.info "Launching network configuration"
-  begin
-Yast::Wizard.OpenAcceptDialog
+  result =
+case args["chosen_id"]
+when "network--switch-to-wicked"
+  switch_to_wicked
+when "network--switch-to-nm"
+  switch_to_network_manager
+else
+  launch_network_configuration(args)
+end
+
+  { "workflow_sequence" => 

commit yast2-network for openSUSE:Factory

2018-11-02 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-11-01 19:09:24

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Thu Nov  1 19:09:24 2018 rev:393 rq:645685 version:4.1.15

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-09-04 22:50:51.463909529 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-11-01 19:09:26.250032826 +0100
@@ -1,0 +2,72 @@
+Wed Oct 31 08:37:13 UTC 2018 - mfi...@suse.com
+
+- bnc#925
+  - always propose wpa_supplicant when configuring wlan
+- bsc#1113080
+  - Fix detection of peap mode (jreidin...@suse.com)
+- Propose most commonly used setup for WPA by default
+- 4.1.15
+
+---
+Wed Oct 24 13:12:33 UTC 2018 - jreidin...@suse.com
+
+- Fix detection of peap mode (bsc#1113080)
+- 4.1.14
+
+---
+Tue Oct 16 19:29:30 UTC 2018 - knut.anders...@suse.com
+
+- Simplified the installation network proposal collecting all the
+  configured dhcp interfaces in a single entry (fate#326480)
+- 4.1.13
+
+---
+Tue Oct 16 09:02:26 UTC 2018 - mfi...@suse.com
+
+- bsc#1110598
+  - fixed path to license file
+- 4.1.12 
+
+---
+Mon Oct 15 08:38:58 UTC 2018 - mfi...@suse.com
+
+- fate#323454
+  - wicked compatible parsing of NTP servers from  dhcp leases 
+- 4.1.11
+
+---
+Thu Oct  4 21:46:23 UTC 2018 - knut.anders...@suse.com
+
+- Fixes to the networking AY schema (bsc#1108852)
+  - Added missed s390 device 'layer2' boolean element.
+- 4.1.10
+
+---
+Wed Oct  3 07:33:01 UTC 2018 - mfi...@suse.com
+
+- bnc#1105230
+  - do not crash with internal error when 0.0.0.0 netmask is used
+in the routing tab
+- Activate s390 network devices before applying udev naming rules,
+  avoiding "Invalid key/value pair in
+  /etc/udev/rules.d/70-persistent-net.rules" (bsc#1095761)
+  (by mvid...@suse.com)
+- 4.1.9
+
+---
+Tue Oct  2 19:59:14 UTC 2018 - mfi...@suse.com
+
+- bnc#1109312
+  - fixed internal error (replaced calls to LanItems::FreeDevices 
+which was removed)
+- 4.1.8
+
+---
+Tue Sep 18 07:31:10 UTC 2018 - mfi...@suse.com
+
+- bnc#964856
+  - adapted to changes in NetworkInterfaces API
+  - GetFreeDevice and GetFreeDevices was dropped
+- 4.1.7
+
+---

Old:

  yast2-network-4.1.6.tar.bz2

New:

  yast2-network-4.1.15.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Xbp1zh/_old  2018-11-01 19:09:26.742032852 +0100
+++ /var/tmp/diff_new_pack.Xbp1zh/_new  2018-11-01 19:09:26.746032852 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.6
+Version:4.1.15
 Release:0
 BuildArch:  noarch
 
@@ -107,7 +107,7 @@
 
 %dir %{yast_docdir}
 %doc %{yast_docdir}/CONTRIBUTING.md
-%license %{yast_docdir}/COPYING
+%license COPYING
 %doc %{yast_docdir}/README.md
 
 %changelog

++ yast2-network-4.1.6.tar.bz2 -> yast2-network-4.1.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.6/doc/Makefile.am 
new/yast2-network-4.1.15/doc/Makefile.am
--- old/yast2-network-4.1.6/doc/Makefile.am 2018-08-23 18:01:38.0 
+0200
+++ new/yast2-network-4.1.15/doc/Makefile.am1970-01-01 01:00:00.0 
+0100
@@ -1,12 +0,0 @@
-#
-# Makefile.am for y2c_network/doc
-#
-
-SUBDIRS = autodocs
-
-htmldir = $(docdir)
-
-doc_DATA = autoinst
-html_DATA = devices.html
-
-EXTRA_DIST = $(doc_DATA) $(html_DATA)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.6/package/yast2-network.changes 
new/yast2-network-4.1.15/package/yast2-network.changes
--- old/yast2-network-4.1.6/package/yast2-network.changes   2018-08-23 
18:01:38.0 +0200
+++ new/yast2-network-4.1.15/package/yast2-network.changes  2018-10-31 
10:03:07.0 +0100
@@ -1,4 +1,76 @@
 ---
+Wed Oct 31 08:37:13 UTC 2018 - mfi...@suse.com
+
+- bnc#925
+  - always propose wpa_supplicant when configuring wlan
+- bsc#1113080
+  - 

commit yast2-network for openSUSE:Factory

2018-09-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-09-04 22:50:44

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Tue Sep  4 22:50:44 2018 rev:392 rq:631136 version:4.1.6

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-08-08 14:44:45.340690345 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-09-04 22:50:51.463909529 +0200
@@ -1,0 +2,11 @@
+Wed Aug 22 07:19:45 UTC 2018 - dgonza...@suse.com
+
+- Update calls to YaST2 systemd classes (related to fate#319428)
+- 4.1.6
+
+---
+Tue Aug 21 11:06:14 CEST 2018 - sch...@suse.de
+
+- Changed dir of COPYING file.
+
+---

Old:

  yast2-network-4.1.5.tar.bz2

New:

  yast2-network-4.1.6.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.skzy0J/_old  2018-09-04 22:50:52.215912110 +0200
+++ /var/tmp/diff_new_pack.skzy0J/_new  2018-09-04 22:50:52.219912124 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.5
+Version:4.1.6
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# yast2 v4.0.21: Y2Firewall::Firewalld::Zone.known_zones (fate#323460)
-BuildRequires:  yast2 >= 4.0.23
-Requires:   yast2 >= 4.0.23
+# Yast2::Systemd::Socket
+BuildRequires:  yast2 >= 4.1.3
+Requires:   yast2 >= 4.1.3
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -107,7 +107,7 @@
 
 %dir %{yast_docdir}
 %doc %{yast_docdir}/CONTRIBUTING.md
-%doc %{yast_docdir}/COPYING
+%license %{yast_docdir}/COPYING
 %doc %{yast_docdir}/README.md
 
 %changelog

++ yast2-network-4.1.5.tar.bz2 -> yast2-network-4.1.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.5/package/yast2-network.changes 
new/yast2-network-4.1.6/package/yast2-network.changes
--- old/yast2-network-4.1.5/package/yast2-network.changes   2018-08-06 
12:36:08.0 +0200
+++ new/yast2-network-4.1.6/package/yast2-network.changes   2018-08-23 
18:01:38.0 +0200
@@ -1,4 +1,15 @@
 ---
+Wed Aug 22 07:19:45 UTC 2018 - dgonza...@suse.com
+
+- Update calls to YaST2 systemd classes (related to fate#319428)
+- 4.1.6
+
+---
+Tue Aug 21 11:06:14 CEST 2018 - sch...@suse.de
+
+- Changed dir of COPYING file.
+
+---
 Fri Aug  3 16:42:04 UTC 2018 - knut.anders...@suse.com
 
 - Fixes to the networking AY schema (bsc#1103712)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.5/package/yast2-network.spec 
new/yast2-network-4.1.6/package/yast2-network.spec
--- old/yast2-network-4.1.5/package/yast2-network.spec  2018-08-06 
12:36:08.0 +0200
+++ new/yast2-network-4.1.6/package/yast2-network.spec  2018-08-23 
18:01:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.5
+Version:4.1.6
 Release:0
 BuildArch:  noarch
 
@@ -31,9 +31,9 @@
 #for install task
 BuildRequires:  rubygem(%rb_default_ruby_abi:yast-rake)
 
-# yast2 v4.0.21: Y2Firewall::Firewalld::Zone.known_zones (fate#323460)
-BuildRequires:  yast2 >= 4.0.23
-Requires:   yast2 >= 4.0.23
+# Yast2::Systemd::Socket
+BuildRequires:  yast2 >= 4.1.3
+Requires:   yast2 >= 4.1.3
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -107,7 +107,7 @@
 
 %dir %{yast_docdir}
 %doc %{yast_docdir}/CONTRIBUTING.md
-%doc %{yast_docdir}/COPYING
+%license %{yast_docdir}/COPYING
 %doc %{yast_docdir}/README.md
 
 %changelog
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.5/src/lib/y2remote/modes/socket_based.rb 
new/yast2-network-4.1.6/src/lib/y2remote/modes/socket_based.rb
--- old/yast2-network-4.1.5/src/lib/y2remote/modes/socket_based.rb  
2018-08-06 12:36:08.0 +0200
+++ new/yast2-network-4.1.6/src/lib/y2remote/modes/socket_based.rb  
2018-08-23 18:01:38.0 +0200
@@ -1,11 +1,11 @@
 require "yast"
+require "yast2/systemd/socket"
 
 module Y2Remote
   module Modes
 # Common methods for handling systemd sockets
 module SocketBased
   def self.included(_base)
-Yast.import "SystemdSocket"
 

commit yast2-network for openSUSE:Factory

2018-08-08 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-08-08 14:44:42

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Aug  8 14:44:42 2018 rev:391 rq:627643 version:4.1.5

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-08-04 21:50:48.456985515 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-08-08 14:44:45.340690345 +0200
@@ -1,0 +2,7 @@
+Fri Aug  3 16:42:04 UTC 2018 - knut.anders...@suse.com
+
+- Fixes to the networking AY schema (bsc#1103712)
+  - Permitted the use of 'listentry' element in list entries.
+- 4.1.5
+
+---

Old:

  yast2-network-4.1.4.tar.bz2

New:

  yast2-network-4.1.5.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.BnMZzb/_old  2018-08-08 14:44:45.828691139 +0200
+++ /var/tmp/diff_new_pack.BnMZzb/_new  2018-08-08 14:44:45.832691145 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.4
+Version:4.1.5
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.4.tar.bz2 -> yast2-network-4.1.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.4/package/yast2-network.changes 
new/yast2-network-4.1.5/package/yast2-network.changes
--- old/yast2-network-4.1.4/package/yast2-network.changes   2018-07-27 
19:19:00.0 +0200
+++ new/yast2-network-4.1.5/package/yast2-network.changes   2018-08-06 
12:36:08.0 +0200
@@ -1,4 +1,11 @@
 ---
+Fri Aug  3 16:42:04 UTC 2018 - knut.anders...@suse.com
+
+- Fixes to the networking AY schema (bsc#1103712)
+  - Permitted the use of 'listentry' element in list entries.
+- 4.1.5
+
+---
 Thu Jul 12 11:46:53 UTC 2018 - mfi...@suse.com
 
 - bnc#964856
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.4/package/yast2-network.spec 
new/yast2-network-4.1.5/package/yast2-network.spec
--- old/yast2-network-4.1.4/package/yast2-network.spec  2018-07-27 
19:19:00.0 +0200
+++ new/yast2-network-4.1.5/package/yast2-network.spec  2018-08-06 
12:36:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.4
+Version:4.1.5
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.4/src/autoyast-rnc/networking.rnc 
new/yast2-network-4.1.5/src/autoyast-rnc/networking.rnc
--- old/yast2-network-4.1.4/src/autoyast-rnc/networking.rnc 2018-07-27 
19:19:00.0 +0200
+++ new/yast2-network-4.1.5/src/autoyast-rnc/networking.rnc 2018-08-06 
12:36:08.0 +0200
@@ -39,7 +39,7 @@
   }
 
 interface =
-  element interface {
+  element (interface | listentry) {
 element device { text }? & #overloaded
 element name { text }? &
 
@@ -90,13 +90,13 @@
 
 
 s390-devices =
-  element device {
+  element s390-devices {
 LIST,
 device+
   }
 
 device =
-  element device {
+  element (device | listentry) {
 element type { text }? &
 element chanids { text }? &
 element portname { text }? &
@@ -112,7 +112,7 @@
   }
 
 rule =
-  element rule {
+  element (rule | listentry) {
 element rule { text }? &
 element value { text }? &
 element name { text }?
@@ -223,7 +223,7 @@
 module_entry+
   }
 module_entry =
-  element module_entry {
+  element (module_entry | listentry) {
 element ccw_chan_ids { text }? &
 element ccw_chan_num { text }? &
 element device { text } &  # overloaded
@@ -263,7 +263,7 @@
 route+
   }
 route =
-  element route {
+  element (route | listentry) {
 destination &
 element netmask { text } & #overloaded
 element device { text } &  #overloaded




commit yast2-network for openSUSE:Factory

2018-08-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-08-04 21:50:43

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sat Aug  4 21:50:43 2018 rev:390 rq:625829 version:4.1.4

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-07-03 23:32:11.728594535 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-08-04 21:50:48.456985515 +0200
@@ -1,0 +2,9 @@
+Thu Jul 12 11:46:53 UTC 2018 - mfi...@suse.com
+
+- bnc#964856
+  - dropped calls to obsolete NetworkInterfaces API
+  - CLI: setting device type explicitly using new type option is
+mandatory when adding new device
+- 4.1.4
+
+---
@@ -20 +29 @@
- Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
+Tue Jun 26 09:18:50 UTC 2018 - mfi...@suse.com

Old:

  yast2-network-4.1.3.tar.bz2

New:

  yast2-network-4.1.4.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.SRNazB/_old  2018-08-04 21:50:48.940986423 +0200
+++ /var/tmp/diff_new_pack.SRNazB/_new  2018-08-04 21:50:48.940986423 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.3
+Version:4.1.4
 Release:0
 BuildArch:  noarch
 
@@ -69,7 +69,7 @@
 Provides:   yast2-network-devel-doc = %{version}
 
 Summary:YaST2 - Network Configuration
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  System/YaST
 
 %build

++ yast2-network-4.1.3.tar.bz2 -> yast2-network-4.1.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.3/package/yast2-network.changes 
new/yast2-network-4.1.4/package/yast2-network.changes
--- old/yast2-network-4.1.3/package/yast2-network.changes   2018-07-02 
16:34:41.0 +0200
+++ new/yast2-network-4.1.4/package/yast2-network.changes   2018-07-27 
19:19:00.0 +0200
@@ -1,4 +1,13 @@
 ---
+Thu Jul 12 11:46:53 UTC 2018 - mfi...@suse.com
+
+- bnc#964856
+  - dropped calls to obsolete NetworkInterfaces API
+  - CLI: setting device type explicitly using new type option is
+mandatory when adding new device
+- 4.1.4
+
+---
 Mon Jul  2 16:20:55 CEST 2018 - sch...@suse.de
 
 - lan_test: stubbin Host.GetModified call (bnc#1052042).
@@ -17,7 +26,7 @@
 - Added additional searchkeys to desktop file (fate#321043).
 
 ---
- Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
+Tue Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
 
 - removed NetworkStorage as it is unused (had been replaced by
   storage-ng)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.3/package/yast2-network.spec 
new/yast2-network-4.1.4/package/yast2-network.spec
--- old/yast2-network-4.1.3/package/yast2-network.spec  2018-07-02 
16:34:41.0 +0200
+++ new/yast2-network-4.1.4/package/yast2-network.spec  2018-07-27 
19:19:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.3
+Version:4.1.4
 Release:0
 BuildArch:  noarch
 
@@ -69,7 +69,7 @@
 Provides:   yast2-network-devel-doc = %{version}
 
 Summary:YaST2 - Network Configuration
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  System/YaST
 
 %build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.3/src/clients/lan.rb 
new/yast2-network-4.1.4/src/clients/lan.rb
--- old/yast2-network-4.1.3/src/clients/lan.rb  2018-07-02 16:34:41.0 
+0200
+++ new/yast2-network-4.1.4/src/clients/lan.rb  2018-07-27 19:19:00.0 
+0200
@@ -170,6 +170,11 @@
 # Commandline option help
 "help" => _("Interfaces for Bridging"),
 "type" => "string"
+  },
+  "type" => {
+# Commandline option help
+"help" => _("Type of the device (eth, vlan, ...)"),
+"type" => "string"
   }
 },
 "mappings"   => {
@@ -182,6 +187,7 @@
 "netmask",
 "prefix",
 "slaves",
+"type",
 "ethdevice",
 "bridge_ports"
   ],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.1.3/src/include/network/lan/address.rb 

commit yast2-network for openSUSE:Factory

2018-07-03 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-07-03 23:32:08

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Tue Jul  3 23:32:08 2018 rev:389 rq:620268 version:4.1.3

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-07-01 21:25:04.080872173 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-07-03 23:32:11.728594535 +0200
@@ -2 +2,19 @@
-Tue Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
+Mon Jul  2 16:20:55 CEST 2018 - sch...@suse.de
+
+- lan_test: stubbin Host.GetModified call (bnc#1052042).
+- 4.1.3
+
+---
+Mon Jul  2 13:42:55 CEST 2018 - sch...@suse.de
+
+- Fixed flickering testcase which has been introduced by fixing
+  bnc#1052042.
+- 4.1.2
+
+---
+Thu Jun 28 15:56:15 CEST 2018 - sch...@suse.de
+
+- Added additional searchkeys to desktop file (fate#321043).
+
+---
+ Jun 26 09:18:50 UTC 2018 - mfi...@suse.com

Old:

  yast2-network-4.1.1.tar.bz2

New:

  yast2-network-4.1.3.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.FP5KEt/_old  2018-07-03 23:32:12.356593631 +0200
+++ /var/tmp/diff_new_pack.FP5KEt/_new  2018-07-03 23:32:12.356593631 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.1
+Version:4.1.3
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.1.1.tar.bz2 -> yast2-network-4.1.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.1/package/yast2-network.changes 
new/yast2-network-4.1.3/package/yast2-network.changes
--- old/yast2-network-4.1.1/package/yast2-network.changes   2018-06-26 
11:34:05.0 +0200
+++ new/yast2-network-4.1.3/package/yast2-network.changes   2018-07-02 
16:34:41.0 +0200
@@ -1,5 +1,23 @@
 ---
-Tue Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
+Mon Jul  2 16:20:55 CEST 2018 - sch...@suse.de
+
+- lan_test: stubbin Host.GetModified call (bnc#1052042).
+- 4.1.3
+
+---
+Mon Jul  2 13:42:55 CEST 2018 - sch...@suse.de
+
+- Fixed flickering testcase which has been introduced by fixing
+  bnc#1052042.
+- 4.1.2
+
+---
+Thu Jun 28 15:56:15 CEST 2018 - sch...@suse.de
+
+- Added additional searchkeys to desktop file (fate#321043).
+
+---
+ Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
 
 - removed NetworkStorage as it is unused (had been replaced by
   storage-ng)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.1/package/yast2-network.spec 
new/yast2-network-4.1.3/package/yast2-network.spec
--- old/yast2-network-4.1.1/package/yast2-network.spec  2018-06-26 
11:34:05.0 +0200
+++ new/yast2-network-4.1.3/package/yast2-network.spec  2018-07-02 
16:34:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.1.1
+Version:4.1.3
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.1/src/desktop/host.desktop 
new/yast2-network-4.1.3/src/desktop/host.desktop
--- old/yast2-network-4.1.1/src/desktop/host.desktop2018-06-26 
11:34:05.0 +0200
+++ new/yast2-network-4.1.3/src/desktop/host.desktop2018-07-02 
16:34:41.0 +0200
@@ -15,6 +15,7 @@
 X-SuSE-YaST-AutoInstResource=host
 X-SuSE-YaST-AutoInstClonable=true
 X-SuSE-YaST-AutoInstSchema=host.rnc
+X-SuSE-YaST-Keywords=name,network,lan,wireless
 
 Icon=yast-host
 Exec=xdg-su -c "/sbin/yast2 host"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.1.1/src/desktop/remote.desktop 
new/yast2-network-4.1.3/src/desktop/remote.desktop
--- old/yast2-network-4.1.1/src/desktop/remote.desktop  2018-06-26 
11:34:05.0 +0200
+++ new/yast2-network-4.1.3/src/desktop/remote.desktop  2018-07-02 
16:34:41.0 +0200
@@ -13,6 +13,7 @@
 X-SuSE-YaST-Geometry=
 X-SuSE-YaST-SortKey=
 X-SuSE-YaST-AutoInstResource=remote
+X-SuSE-YaST-Keywords=vnc,network,remote
 
 Icon=yast-remote
 Exec=xdg-su -c "/sbin/yast2 remote"
diff -urN '--exclude=CVS' 

commit yast2-network for openSUSE:Factory

2018-07-01 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-07-01 21:25:01

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Jul  1 21:25:01 2018 rev:388 rq:619572 version:4.1.1

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-06-20 15:17:59.923147762 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-07-01 21:25:04.080872173 +0200
@@ -1,0 +2,48 @@
+Tue Jun 26 09:18:50 UTC 2018 - mfi...@suse.com
+
+- removed NetworkStorage as it is unused (had been replaced by
+  storage-ng)
+
+---
+Fri Jun 22 14:11:30 CEST 2018 - sch...@suse.de
+
+- Removed AutoYaST dependencies in order to run the host module
+  without AutoYaST packages (bnc#1098407).
+- 4.1.1
+
+---
+Wed Jun 20 07:24:24 UTC 2018 - mfi...@suse.com
+
+- dropped dead code 
+- 4.1.0
+
+---
+Wed Jun 20 07:21:17 UTC 2018 - mfi...@suse.com
+
+- bnc#1086454
+  - do not enforce particular mode for IPoIB devices by default
+- 4.0.35
+
+---
+Mon Jun 18 08:01:44 UTC 2018 - mfi...@suse.com
+
+- bnc#1097954
+  - fixed several rpmlint warnings
+- 4.0.34
+
+---
+Tue Jun 12 10:29:30 CEST 2018 - sch...@suse.de
+
+- AutoYaST: Checking for empty host name entries and informing
+  the user. (bnc#1095113)
+  4.0.33
+
+---
+Thu Jun  7 10:48:42 UTC 2018 - knut.anders...@suse.com
+
+- AutoYaST: Do not crash when trying to convert the /etc/hosts
+  profile declaration from multiple line host entries for the same
+  host to just one line (bnc#1095971)
+- 4.0.32
+
+---

Old:

  yast2-network-4.0.31.tar.bz2

New:

  yast2-network-4.1.1.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.2yFTIX/_old  2018-07-01 21:25:05.148870783 +0200
+++ /var/tmp/diff_new_pack.2yFTIX/_new  2018-07-01 21:25:05.164870762 +0200
@@ -17,11 +17,12 @@
 
 
 Name:   yast2-network
-Version:4.0.31
+Version:4.1.1
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/yast/yast-network
 Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  update-desktop-files
@@ -64,12 +65,15 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Obsoletes:  yast2-network-devel-doc
+Obsoletes:  yast2-network-devel-doc <= 3.1.154
+Provides:   yast2-network-devel-doc = %{version}
 
 Summary:YaST2 - Network Configuration
 License:GPL-2.0
 Group:  System/YaST
 
+%build
+
 %description 
 This package contains the YaST2 component for network configuration.
 

++ yast2-network-4.0.31.tar.bz2 -> yast2-network-4.1.1.tar.bz2 ++
 1845 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2018-06-20 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-06-20 15:15:26

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Jun 20 15:15:26 2018 rev:387 rq: version:4.0.31

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-06-19 11:53:20.005044352 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-06-20 15:17:59.923147762 +0200
@@ -2,22 +1,0 @@
-Mon Jun 18 08:01:44 UTC 2018 - mfi...@suse.com
-
-- bnc#1097954
-  - fixed several rpmlint warnings
-- 4.0.34
-

-Tue Jun 12 10:29:30 CEST 2018 - sch...@suse.de
-
-- AutoYaST: Checking for empty host name entries and informing
-  the user. (bnc#1095113)
-  4.0.33
-

-Thu Jun  7 10:48:42 UTC 2018 - knut.anders...@suse.com
-
-- AutoYaST: Do not crash when trying to convert the /etc/hosts
-  profile declaration from multiple line host entries for the same
-  host to just one line (bnc#1095971)
-- 4.0.32
-


Old:

  yast2-network-4.0.34.tar.bz2

New:

  yast2-network-4.0.31.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.9Djm2b/_old  2018-06-20 15:18:00.579123975 +0200
+++ /var/tmp/diff_new_pack.9Djm2b/_new  2018-06-20 15:18:00.583123831 +0200
@@ -17,12 +17,11 @@
 
 
 Name:   yast2-network
-Version:4.0.34
+Version:4.0.31
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:https://github.com/yast/yast-network
 Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  update-desktop-files
@@ -65,15 +64,12 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Obsoletes:  yast2-network-devel-doc <= 3.1.154
-Provides:   yast2-network-devel-doc = %{version}
+Obsoletes:  yast2-network-devel-doc
 
 Summary:YaST2 - Network Configuration
 License:GPL-2.0
 Group:  System/YaST
 
-%build
-
 %description 
 This package contains the YaST2 component for network configuration.
 

++ yast2-network-4.0.34.tar.bz2 -> yast2-network-4.0.31.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.34/package/yast2-network.changes 
new/yast2-network-4.0.31/package/yast2-network.changes
--- old/yast2-network-4.0.34/package/yast2-network.changes  2018-06-18 
11:21:20.0 +0200
+++ new/yast2-network-4.0.31/package/yast2-network.changes  2018-05-09 
15:48:51.0 +0200
@@ -1,26 +1,4 @@
 ---
-Mon Jun 18 08:01:44 UTC 2018 - mfi...@suse.com
-
-- bnc#1097954
-  - fixed several rpmlint warnings
-- 4.0.34
-

-Tue Jun 12 10:29:30 CEST 2018 - sch...@suse.de
-
-- AutoYaST: Checking for empty host name entries and informing
-  the user. (bnc#1095113)
-  4.0.33
-

-Thu Jun  7 10:48:42 UTC 2018 - knut.anders...@suse.com
-
-- AutoYaST: Do not crash when trying to convert the /etc/hosts
-  profile declaration from multiple line host entries for the same
-  host to just one line (bnc#1095971)
-- 4.0.32
-

 Wed May  9 10:35:36 UTC 2018 - knut.anders...@suse.com
 
 - Fix the check for adjusting ifcfg configuration in case of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.34/package/yast2-network.spec 
new/yast2-network-4.0.31/package/yast2-network.spec
--- old/yast2-network-4.0.34/package/yast2-network.spec 2018-06-18 
11:21:20.0 +0200
+++ new/yast2-network-4.0.31/package/yast2-network.spec 2018-05-09 
15:48:51.0 +0200
@@ -17,12 +17,11 @@
 
 
 Name:   yast2-network
-Version:4.0.34
+Version:4.0.31
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:   https://github.com/yast/yast-network
 Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  update-desktop-files
@@ -65,15 +64,12 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Obsoletes:  yast2-network-devel-doc <= 3.1.154
-Provides:   yast2-network-devel-doc = %{version}
+Obsoletes:  yast2-network-devel-doc
 
 Summary:YaST2 - Network Configuration
 License:GPL-2.0
 

commit yast2-network for openSUSE:Factory

2018-06-19 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-06-19 11:53:10

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Tue Jun 19 11:53:10 2018 rev:386 rq:617467 version:4.0.34

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-05-11 14:26:58.830914198 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-06-19 11:53:20.005044352 +0200
@@ -1,0 +2,22 @@
+Mon Jun 18 08:01:44 UTC 2018 - mfi...@suse.com
+
+- bnc#1097954
+  - fixed several rpmlint warnings
+- 4.0.34
+
+---
+Tue Jun 12 10:29:30 CEST 2018 - sch...@suse.de
+
+- AutoYaST: Checking for empty host name entries and informing
+  the user. (bnc#1095113)
+  4.0.33
+
+---
+Thu Jun  7 10:48:42 UTC 2018 - knut.anders...@suse.com
+
+- AutoYaST: Do not crash when trying to convert the /etc/hosts
+  profile declaration from multiple line host entries for the same
+  host to just one line (bnc#1095971)
+- 4.0.32
+
+---

Old:

  yast2-network-4.0.31.tar.bz2

New:

  yast2-network-4.0.34.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Bbtfnt/_old  2018-06-19 11:53:21.065004998 +0200
+++ /var/tmp/diff_new_pack.Bbtfnt/_new  2018-06-19 11:53:21.065004998 +0200
@@ -17,11 +17,12 @@
 
 
 Name:   yast2-network
-Version:4.0.31
+Version:4.0.34
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/yast/yast-network
 Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  update-desktop-files
@@ -64,12 +65,15 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Obsoletes:  yast2-network-devel-doc
+Obsoletes:  yast2-network-devel-doc <= 3.1.154
+Provides:   yast2-network-devel-doc = %{version}
 
 Summary:YaST2 - Network Configuration
 License:GPL-2.0
 Group:  System/YaST
 
+%build
+
 %description 
 This package contains the YaST2 component for network configuration.
 

++ yast2-network-4.0.31.tar.bz2 -> yast2-network-4.0.34.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.31/package/yast2-network.changes 
new/yast2-network-4.0.34/package/yast2-network.changes
--- old/yast2-network-4.0.31/package/yast2-network.changes  2018-05-09 
15:48:51.0 +0200
+++ new/yast2-network-4.0.34/package/yast2-network.changes  2018-06-18 
11:21:20.0 +0200
@@ -1,4 +1,26 @@
 ---
+Mon Jun 18 08:01:44 UTC 2018 - mfi...@suse.com
+
+- bnc#1097954
+  - fixed several rpmlint warnings
+- 4.0.34
+
+---
+Tue Jun 12 10:29:30 CEST 2018 - sch...@suse.de
+
+- AutoYaST: Checking for empty host name entries and informing
+  the user. (bnc#1095113)
+  4.0.33
+
+---
+Thu Jun  7 10:48:42 UTC 2018 - knut.anders...@suse.com
+
+- AutoYaST: Do not crash when trying to convert the /etc/hosts
+  profile declaration from multiple line host entries for the same
+  host to just one line (bnc#1095971)
+- 4.0.32
+
+---
 Wed May  9 10:35:36 UTC 2018 - knut.anders...@suse.com
 
 - Fix the check for adjusting ifcfg configuration in case of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.31/package/yast2-network.spec 
new/yast2-network-4.0.34/package/yast2-network.spec
--- old/yast2-network-4.0.31/package/yast2-network.spec 2018-05-09 
15:48:51.0 +0200
+++ new/yast2-network-4.0.34/package/yast2-network.spec 2018-06-18 
11:21:20.0 +0200
@@ -17,11 +17,12 @@
 
 
 Name:   yast2-network
-Version:4.0.31
+Version:4.0.34
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:   https://github.com/yast/yast-network
 Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  update-desktop-files
@@ -64,12 +65,15 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Obsoletes:  yast2-network-devel-doc
+Obsoletes:  yast2-network-devel-doc <= 3.1.154
+Provides:   yast2-network-devel-doc = %{version}
 
 Summary:YaST2 - Network Configuration
 License:

commit yast2-network for openSUSE:Factory

2018-05-11 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-05-11 14:26:54

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Fri May 11 14:26:54 2018 rev:385 rq:605776 version:4.0.31

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-04-26 13:31:54.965525189 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-05-11 14:26:58.830914198 +0200
@@ -1,0 +2,8 @@
+Wed May  9 10:35:36 UTC 2018 - knut.anders...@suse.com
+
+- Fix the check for adjusting ifcfg configuration in case of
+  network based root filesystem when saving the network at the end
+  of the installation (bsc#1090752).
+- 4.0.31
+
+---

Old:

  yast2-network-4.0.30.tar.bz2

New:

  yast2-network-4.0.31.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.fThCtr/_old  2018-05-11 14:26:59.998871761 +0200
+++ /var/tmp/diff_new_pack.fThCtr/_new  2018-05-11 14:27:00.002871616 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.30
+Version:4.0.31
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.30.tar.bz2 -> yast2-network-4.0.31.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.30/package/yast2-network.changes 
new/yast2-network-4.0.31/package/yast2-network.changes
--- old/yast2-network-4.0.30/package/yast2-network.changes  2018-04-25 
14:52:17.0 +0200
+++ new/yast2-network-4.0.31/package/yast2-network.changes  2018-05-09 
15:48:51.0 +0200
@@ -1,4 +1,12 @@
 ---
+Wed May  9 10:35:36 UTC 2018 - knut.anders...@suse.com
+
+- Fix the check for adjusting ifcfg configuration in case of
+  network based root filesystem when saving the network at the end
+  of the installation (bsc#1090752).
+- 4.0.31
+
+---
 Wed Apr 25 08:31:35 UTC 2018 - knut.anders...@suse.com
 
 - Y2remote: When vnc is disabled disable also all the services that
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.30/package/yast2-network.spec 
new/yast2-network-4.0.31/package/yast2-network.spec
--- old/yast2-network-4.0.30/package/yast2-network.spec 2018-04-25 
14:52:17.0 +0200
+++ new/yast2-network-4.0.31/package/yast2-network.spec 2018-05-09 
15:48:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.30
+Version:4.0.31
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.30/src/lib/network/clients/save_network.rb 
new/yast2-network-4.0.31/src/lib/network/clients/save_network.rb
--- old/yast2-network-4.0.30/src/lib/network/clients/save_network.rb
2018-04-25 14:52:17.0 +0200
+++ new/yast2-network-4.0.31/src/lib/network/clients/save_network.rb
2018-05-09 15:48:51.0 +0200
@@ -37,16 +37,14 @@
   # storage-ng
   # Check if installation is targeted to a remote destination.
   devicegraph = Y2Storage::StorageManager.instance.staging
-  is_disk_in_network = devicegraph.filesystem_in_network?(
-Installation.destdir
-  )
+  is_disk_in_network = devicegraph.filesystem_in_network?("/")
 
   if !is_disk_in_network
-log.info("Directory \"#{Installation.destdir}\" is not on a network 
based device")
+log.info("Root filesystem is not on a network based device")
 return
   end
 
-  log.info("Directory \"#{Installation.destdir}\" is on a network based 
device")
+  log.info("Root filesystem is on a network based device")
 
   # tune ifcfg file for remote filesystem
   SCR.Execute(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.30/src/modules/Lan.rb 
new/yast2-network-4.0.31/src/modules/Lan.rb
--- old/yast2-network-4.0.30/src/modules/Lan.rb 2018-04-25 14:52:17.0 
+0200
+++ new/yast2-network-4.0.31/src/modules/Lan.rb 2018-05-09 15:48:51.0 
+0200
@@ -286,9 +286,6 @@
   end
 
   return false if Abort()
-
-  return false if Abort()
-  # Progress step 1/8
   ProgressNextStage(_("Detecting ndiswrapper...")) if @gui
   # modprobe ndiswrapper before hwinfo when needed (#343893)
   if !Mode.autoinst && PackageSystem.Installed("ndiswrapper")
@@ 

commit yast2-network for openSUSE:Factory

2018-04-26 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-04-26 13:31:52

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Thu Apr 26 13:31:52 2018 rev:384 rq:601002 version:4.0.30

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-04-07 20:52:35.724079666 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-04-26 13:31:54.965525189 +0200
@@ -1,0 +2,40 @@
+Wed Apr 25 08:31:35 UTC 2018 - knut.anders...@suse.com
+
+- Y2remote: When vnc is disabled disable also all the services that
+  are still enabled (bsc#1088646)
+- 4.0.30
+
+---
+Wed Apr 25 07:01:58 UTC 2018 - mfi...@suse.com
+
+- bnc#1077435
+  - do not crash with internal error when /etc/hosts is corrupted
+- 4.0.29
+
+---
+Mon Apr 23 18:10:29 UTC 2018 - mfi...@suse.com
+
+- bnc#1089471 
+  - previous fix contains wrong check of ifcfg options and proposes
+wpa_supplicant incorrectly. The check was fixed and
+wpa_supplicant is proposed when needed only.
+- 4.0.28
+
+---
+Sat Apr 21 18:15:56 UTC 2018 - mfi...@suse.com
+
+- bnc#1089471
+  - do not propose vlan, iw and tunctl packages for installation as
+its functionality is implemented by wicked.
+- 4.0.27
+
+---
+Thu Apr 19 00:31:15 UTC 2018 - knut.anders...@suse.com
+
+- Y2Remote:
+  - Fixed the start of services when writing (bsc#1088646)
+  - Fixed the modification of vnc services configuration according
+to the selection of allowed interfaces (bsc#1088647)
+- 4.0.26
+
+---

Old:

  yast2-network-4.0.25.tar.bz2

New:

  yast2-network-4.0.30.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.RnXZBE/_old  2018-04-26 13:31:55.461507020 +0200
+++ /var/tmp/diff_new_pack.RnXZBE/_new  2018-04-26 13:31:55.461507020 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.25
+Version:4.0.30
 Release:0
 BuildArch:  noarch
 
@@ -45,9 +45,9 @@
 # Packages::vnc_packages
 Requires:   yast2-packager >= 4.0.18
 BuildRequires:  yast2-packager >= 4.0.18
-# cfa for parsing hosts, AugeasTree#unique_id
-BuildRequires:  rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
-Requires:   rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
+# cfa for parsing hosts
+BuildRequires:  rubygem(%rb_default_ruby_abi:cfa) >= 0.6.4
+Requires:   rubygem(%rb_default_ruby_abi:cfa) >= 0.6.4
 # lenses are needed to use cfa
 BuildRequires:  augeas-lenses
 Requires:   augeas-lenses

++ yast2-network-4.0.25.tar.bz2 -> yast2-network-4.0.30.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.25/package/yast2-network.changes 
new/yast2-network-4.0.30/package/yast2-network.changes
--- old/yast2-network-4.0.25/package/yast2-network.changes  2018-04-06 
19:43:36.0 +0200
+++ new/yast2-network-4.0.30/package/yast2-network.changes  2018-04-25 
14:52:17.0 +0200
@@ -1,4 +1,44 @@
 ---
+Wed Apr 25 08:31:35 UTC 2018 - knut.anders...@suse.com
+
+- Y2remote: When vnc is disabled disable also all the services that
+  are still enabled (bsc#1088646)
+- 4.0.30
+
+---
+Wed Apr 25 07:01:58 UTC 2018 - mfi...@suse.com
+
+- bnc#1077435
+  - do not crash with internal error when /etc/hosts is corrupted
+- 4.0.29
+
+---
+Mon Apr 23 18:10:29 UTC 2018 - mfi...@suse.com
+
+- bnc#1089471 
+  - previous fix contains wrong check of ifcfg options and proposes
+wpa_supplicant incorrectly. The check was fixed and
+wpa_supplicant is proposed when needed only.
+- 4.0.28
+
+---
+Sat Apr 21 18:15:56 UTC 2018 - mfi...@suse.com
+
+- bnc#1089471
+  - do not propose vlan, iw and tunctl packages for installation as
+its functionality is implemented by wicked.
+- 4.0.27
+
+---
+Thu Apr 19 00:31:15 UTC 2018 - knut.anders...@suse.com
+
+- Y2Remote:
+  - Fixed the start of services when writing (bsc#1088646)
+  - Fixed the modification of vnc services configuration according
+to the 

commit yast2-network for openSUSE:Factory

2018-04-07 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-04-07 20:52:31

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sat Apr  7 20:52:31 2018 rev:383 rq:594064 version:4.0.25

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-03-26 12:15:30.968048086 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-04-07 20:52:35.724079666 +0200
@@ -1,0 +2,13 @@
+Fri Apr  6 16:17:45 UTC 2018 - knut.anders...@suse.com
+
+- Fixed preformatted proposal for network module (bsc#1088488)
+- 4.0.25
+
+---
+Tue Mar 27 12:26:15 UTC 2018 - lsle...@suse.cz
+
+- Added missing "textdomain" call to properly translate the
+  web access check box label (bsc#1081466)
+- 4.0.24
+
+---

Old:

  yast2-network-4.0.23.tar.bz2

New:

  yast2-network-4.0.25.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.2Ytv2i/_old  2018-04-07 20:52:36.268059977 +0200
+++ /var/tmp/diff_new_pack.2Ytv2i/_new  2018-04-07 20:52:36.272059833 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.23
+Version:4.0.25
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.23.tar.bz2 -> yast2-network-4.0.25.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.23/package/yast2-network.changes 
new/yast2-network-4.0.25/package/yast2-network.changes
--- old/yast2-network-4.0.23/package/yast2-network.changes  2018-03-22 
09:46:55.0 +0100
+++ new/yast2-network-4.0.25/package/yast2-network.changes  2018-04-06 
19:43:36.0 +0200
@@ -1,4 +1,17 @@
 ---
+Fri Apr  6 16:17:45 UTC 2018 - knut.anders...@suse.com
+
+- Fixed preformatted proposal for network module (bsc#1088488)
+- 4.0.25
+
+---
+Tue Mar 27 12:26:15 UTC 2018 - lsle...@suse.cz
+
+- Added missing "textdomain" call to properly translate the
+  web access check box label (bsc#1081466)
+- 4.0.24
+
+---
 Wed Mar 21 23:20:26 UTC 2018 - knut.anders...@suse.com
 
 - Added networking interfaces 'zone' element to the AutoYaST schema
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.23/package/yast2-network.spec 
new/yast2-network-4.0.25/package/yast2-network.spec
--- old/yast2-network-4.0.23/package/yast2-network.spec 2018-03-22 
09:46:55.0 +0100
+++ new/yast2-network-4.0.25/package/yast2-network.spec 2018-04-06 
19:43:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.23
+Version:4.0.25
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.23/src/lib/network/clients/network_proposal.rb 
new/yast2-network-4.0.25/src/lib/network/clients/network_proposal.rb
--- old/yast2-network-4.0.23/src/lib/network/clients/network_proposal.rb
2018-03-22 09:46:55.0 +0100
+++ new/yast2-network-4.0.25/src/lib/network/clients/network_proposal.rb
2018-04-06 19:43:36.0 +0200
@@ -24,7 +24,7 @@
 
 def make_proposal(_)
   {
-"preformatted_proposal" => Yast::Lan.Summary("summary"),
+"preformatted_proposal" => Yast::Lan.Summary("summary").first,
 "label_proposal"=> [Yast::LanItems.summary("one_line")]
   }
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.23/src/lib/y2remote/widgets/remote.rb 
new/yast2-network-4.0.25/src/lib/y2remote/widgets/remote.rb
--- old/yast2-network-4.0.23/src/lib/y2remote/widgets/remote.rb 2018-03-22 
09:46:55.0 +0100
+++ new/yast2-network-4.0.25/src/lib/y2remote/widgets/remote.rb 2018-04-06 
19:43:36.0 +0200
@@ -157,6 +157,10 @@
 
 # Checkbox widget for setting vnc web access as enabled when checked.
 class AllowWeb < CWM::CheckBox
+  def initialize
+textdomain "network"
+  end
+
   def label
 _("Enable access using a  browser")
   end
@@ -178,6 +182,7 @@
   "services"=> ["tigervnc", "tigervnc-https"],
   "display_details" => true
 )
+textdomain "network"
   end
 
   def init
diff -urN 

commit yast2-network for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-03-26 12:15:26

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Mon Mar 26 12:15:26 2018 rev:382 rq:589941 version:4.0.23

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-03-11 18:02:22.809138658 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-03-26 12:15:30.968048086 +0200
@@ -1,0 +2,14 @@
+Wed Mar 21 23:20:26 UTC 2018 - knut.anders...@suse.com
+
+- Added networking interfaces 'zone' element to the AutoYaST schema
+  file (bsc#1013047)
+- 4.0.23
+
+---
+Fri Mar 16 14:09:54 UTC 2018 - knut.anders...@suse.com
+
+- Read and write the firewalld configuration when the remote access
+  is configured through the remote client dialog (bsc#1085658)
+- 4.0.22
+
+---

Old:

  yast2-network-4.0.21.tar.bz2

New:

  yast2-network-4.0.23.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.PaaQb4/_old  2018-03-26 12:15:32.583990152 +0200
+++ /var/tmp/diff_new_pack.PaaQb4/_new  2018-03-26 12:15:32.595989721 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.21
+Version:4.0.23
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.21.tar.bz2 -> yast2-network-4.0.23.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.21/package/yast2-network.changes 
new/yast2-network-4.0.23/package/yast2-network.changes
--- old/yast2-network-4.0.21/package/yast2-network.changes  2018-03-09 
10:18:26.0 +0100
+++ new/yast2-network-4.0.23/package/yast2-network.changes  2018-03-22 
09:46:55.0 +0100
@@ -1,4 +1,18 @@
 ---
+Wed Mar 21 23:20:26 UTC 2018 - knut.anders...@suse.com
+
+- Added networking interfaces 'zone' element to the AutoYaST schema
+  file (bsc#1013047)
+- 4.0.23
+
+---
+Fri Mar 16 14:09:54 UTC 2018 - knut.anders...@suse.com
+
+- Read and write the firewalld configuration when the remote access
+  is configured through the remote client dialog (bsc#1085658)
+- 4.0.22
+
+---
 Thu Mar  8 11:15:12 UTC 2018 - knut.anders...@suse.com
 
 - bsc#1078991
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.21/package/yast2-network.spec 
new/yast2-network-4.0.23/package/yast2-network.spec
--- old/yast2-network-4.0.21/package/yast2-network.spec 2018-03-09 
10:18:26.0 +0100
+++ new/yast2-network-4.0.23/package/yast2-network.spec 2018-03-22 
09:46:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.21
+Version:4.0.23
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.21/src/autoyast-rnc/networking.rnc 
new/yast2-network-4.0.23/src/autoyast-rnc/networking.rnc
--- old/yast2-network-4.0.21/src/autoyast-rnc/networking.rnc2018-03-09 
10:18:26.0 +0100
+++ new/yast2-network-4.0.23/src/autoyast-rnc/networking.rnc2018-03-22 
09:46:55.0 +0100
@@ -84,6 +84,7 @@
 dhclient_set_down_link? &
 dhclient_set_default_route? &
 
+element zone { text }? &
 element firewall { "yes" | "no" }?
   }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.21/src/clients/remote.rb 
new/yast2-network-4.0.23/src/clients/remote.rb
--- old/yast2-network-4.0.21/src/clients/remote.rb  2018-03-09 
10:18:26.0 +0100
+++ new/yast2-network-4.0.23/src/clients/remote.rb  2018-03-22 
09:46:55.0 +0100
@@ -21,6 +21,7 @@
 require "yast"
 require "y2remote/remote"
 require "y2remote/dialogs/remote"
+require "y2firewall/firewalld"
 
 module Yast
   class RemoteClient < Client
@@ -59,6 +60,10 @@
 
   private
 
+def firewalld
+  Y2Firewall::Firewalld.instance
+end
+
 def remote
   @remote ||= Y2Remote::Remote.instance
 end
@@ -107,13 +112,17 @@
 
 # Main remote GUI
 def RemoteGUI
+  firewalld.read
   ret = Y2Remote::Dialogs::Remote.new.run
 
   Wizard.CreateDialog
   Wizard.SetDesktopTitleAndIcon("remote")
   Wizard.SetNextButton(:next, Label.FinishButton)
 
-  

commit yast2-network for openSUSE:Factory

2018-03-11 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-03-11 18:02:21

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Mar 11 18:02:21 2018 rev:381 rq:584638 version:4.0.21

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-03-04 11:51:02.773507758 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-03-11 18:02:22.809138658 +0100
@@ -1,0 +2,15 @@
+Thu Mar  8 11:15:12 UTC 2018 - knut.anders...@suse.com
+
+- bsc#1078991
+  - Do not crash when some LanItem does not have hardware info.
+- 4.0.21
+
+---
+Tue Mar  6 16:12:13 UTC 2018 - knut.anders...@suse.com
+
+- Tigervnc will provide the definition of firewalld services so
+  we will use them instead of the vnc-server service definition
+  that is shipped with firewalld (bsc#1081952)
+- 4.0.20
+
+---

Old:

  yast2-network-4.0.19.tar.bz2

New:

  yast2-network-4.0.21.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.CqRsq7/_old  2018-03-11 18:02:23.833101949 +0100
+++ /var/tmp/diff_new_pack.CqRsq7/_new  2018-03-11 18:02:23.837101805 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.19
+Version:4.0.21
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.19.tar.bz2 -> yast2-network-4.0.21.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.19/package/yast2-network.changes 
new/yast2-network-4.0.21/package/yast2-network.changes
--- old/yast2-network-4.0.19/package/yast2-network.changes  2018-03-02 
15:21:01.0 +0100
+++ new/yast2-network-4.0.21/package/yast2-network.changes  2018-03-09 
10:18:26.0 +0100
@@ -1,4 +1,19 @@
 ---
+Thu Mar  8 11:15:12 UTC 2018 - knut.anders...@suse.com
+
+- bsc#1078991
+  - Do not crash when some LanItem does not have hardware info.
+- 4.0.21
+
+---
+Tue Mar  6 16:12:13 UTC 2018 - knut.anders...@suse.com
+
+- Tigervnc will provide the definition of firewalld services so
+  we will use them instead of the vnc-server service definition
+  that is shipped with firewalld (bsc#1081952)
+- 4.0.20
+
+---
 Thu Mar  1 13:58:27 UTC 2018 - knut.anders...@suse.com
 
 - save_network client copies wicked dhcp files from inst-sys into
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.19/package/yast2-network.spec 
new/yast2-network-4.0.21/package/yast2-network.spec
--- old/yast2-network-4.0.19/package/yast2-network.spec 2018-03-02 
15:21:01.0 +0100
+++ new/yast2-network-4.0.21/package/yast2-network.spec 2018-03-09 
10:18:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.19
+Version:4.0.21
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.19/src/lib/network/network_autoyast.rb 
new/yast2-network-4.0.21/src/lib/network/network_autoyast.rb
--- old/yast2-network-4.0.19/src/lib/network/network_autoyast.rb
2018-03-02 15:21:01.0 +0100
+++ new/yast2-network-4.0.21/src/lib/network/network_autoyast.rb
2018-03-09 10:18:26.0 +0100
@@ -329,7 +329,8 @@
 
 # find item which matches to the given rule definition
 item, matching_item = LanItems.Items.find do |_, i|
-  i["hwinfo"]["busid"].downcase == key || i["hwinfo"]["mac"].downcase 
== key
+  i["hwinfo"] &&
+(i["hwinfo"]["busid"].downcase == key || 
i["hwinfo"]["mac"].downcase == key)
 end
 next if !matching_item
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.19/src/lib/y2remote/widgets/remote.rb 
new/yast2-network-4.0.21/src/lib/y2remote/widgets/remote.rb
--- old/yast2-network-4.0.19/src/lib/y2remote/widgets/remote.rb 2018-03-02 
15:21:01.0 +0100
+++ new/yast2-network-4.0.21/src/lib/y2remote/widgets/remote.rb 2018-03-09 
10:18:26.0 +0100
@@ -175,7 +175,7 @@
   attr_accessor :cwm_interfaces
   def initialize
 @cwm_interfaces = Yast::CWMFirewallInterfaces.CreateOpenFirewallWidget(
-  "services"=> 

commit yast2-network for openSUSE:Factory

2018-03-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-03-04 11:50:58

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Mar  4 11:50:58 2018 rev:380 rq:582001 version:4.0.19

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-02-24 16:36:20.228019283 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-03-04 11:51:02.773507758 +0100
@@ -1,0 +2,21 @@
+Thu Mar  1 13:58:27 UTC 2018 - knut.anders...@suse.com
+
+- save_network client copies wicked dhcp files from inst-sys into
+  the target using the same dhcp id when rebooting after
+  installation. (bsc#1082832)
+- 4.0.19
+
+---
+Thu Mar  1 13:56:21 UTC 2018 - lsle...@suse.cz
+
+- Fixed a random build failure (introduced by the previous fix for
+  bsc#1083015)
+- 4.0.18
+
+---
+Tue Feb 27 14:38:55 UTC 2018 - jreidin...@suse.com
+
+- add missing textdomains (bsc#1083015)
+- 4.0.17
+
+---

Old:

  yast2-network-4.0.16.tar.bz2

New:

  yast2-network-4.0.19.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.T1DRGQ/_old  2018-03-04 11:51:03.357486603 +0100
+++ /var/tmp/diff_new_pack.T1DRGQ/_new  2018-03-04 11:51:03.361486458 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.16
+Version:4.0.19
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.16.tar.bz2 -> yast2-network-4.0.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.16/package/yast2-network.changes 
new/yast2-network-4.0.19/package/yast2-network.changes
--- old/yast2-network-4.0.16/package/yast2-network.changes  2018-02-23 
12:45:48.0 +0100
+++ new/yast2-network-4.0.19/package/yast2-network.changes  2018-03-02 
15:21:01.0 +0100
@@ -1,4 +1,25 @@
 ---
+Thu Mar  1 13:58:27 UTC 2018 - knut.anders...@suse.com
+
+- save_network client copies wicked dhcp files from inst-sys into
+  the target using the same dhcp id when rebooting after
+  installation. (bsc#1082832)
+- 4.0.19
+
+---
+Thu Mar  1 13:56:21 UTC 2018 - lsle...@suse.cz
+
+- Fixed a random build failure (introduced by the previous fix for
+  bsc#1083015)
+- 4.0.18
+
+---
+Tue Feb 27 14:38:55 UTC 2018 - jreidin...@suse.com
+
+- add missing textdomains (bsc#1083015)
+- 4.0.17
+
+---
 Fri Feb 23 11:27:58 UTC 2018 - knut.anders...@suse.com
 
 - Really translate firewalld zones (bsc#1082246)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.16/package/yast2-network.spec 
new/yast2-network-4.0.19/package/yast2-network.spec
--- old/yast2-network-4.0.16/package/yast2-network.spec 2018-02-23 
12:45:48.0 +0100
+++ new/yast2-network-4.0.19/package/yast2-network.spec 2018-03-02 
15:21:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.16
+Version:4.0.19
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.16/src/lib/network/clients/save_network.rb 
new/yast2-network-4.0.19/src/lib/network/clients/save_network.rb
--- old/yast2-network-4.0.16/src/lib/network/clients/save_network.rb
2018-02-23 12:45:48.0 +0100
+++ new/yast2-network-4.0.19/src/lib/network/clients/save_network.rb
2018-03-02 15:21:01.0 +0100
@@ -31,6 +31,8 @@
   nil
 end
 
+  private
+
 def adjust_for_network_disks(file)
   # storage-ng
   # Check if installation is targeted to a remote destination.
@@ -191,25 +193,7 @@
   # but definitely not looking well ;-)
   NetworkAutoYast.instance.create_udevs if Mode.autoinst
 
-  # Copy DHCP client cache so that we can request the same IP (#43974).
-  WFM.Execute(
-path(".local.bash"),
-Builtins.sformat(
-  "mkdir -p '%2%1'; /bin/cp -p %1/dhcpcd-*.cache '%2%1'",
-  "/var/lib/dhcpcd",
-  String.Quote(Installation.destdir)
-)
-  )
-  # Copy DHCPv6 (DHCP for IPv6) client cache.
-  WFM.Execute(
-

commit yast2-network for openSUSE:Factory

2018-02-24 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-02-24 16:36:19

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sat Feb 24 16:36:19 2018 rev:379 rq:579489 version:4.0.16

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-01-28 00:37:37.374556839 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-02-24 16:36:20.228019283 +0100
@@ -1,0 +2,13 @@
+Fri Feb 23 11:27:58 UTC 2018 - knut.anders...@suse.com
+
+- Really translate firewalld zones (bsc#1082246)
+- 4.0.16
+
+---
+Wed Feb 14 10:40:04 UTC 2018 - knut.anders...@suse.com
+
+- Virtualization Bridge Proposal: Do not propose network interfaces
+  without link as bridgeable (bsc#1062596, bsc#1072951).
+- 4.0.15
+
+---

Old:

  yast2-network-4.0.14.tar.bz2

New:

  yast2-network-4.0.16.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.iUMqse/_old  2018-02-24 16:36:20.995991642 +0100
+++ /var/tmp/diff_new_pack.iUMqse/_new  2018-02-24 16:36:20.995991642 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.14
+Version:4.0.16
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.14.tar.bz2 -> yast2-network-4.0.16.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.14/package/yast2-network.changes 
new/yast2-network-4.0.16/package/yast2-network.changes
--- old/yast2-network-4.0.14/package/yast2-network.changes  2018-01-25 
10:37:34.0 +0100
+++ new/yast2-network-4.0.16/package/yast2-network.changes  2018-02-23 
12:45:48.0 +0100
@@ -1,4 +1,17 @@
 ---
+Fri Feb 23 11:27:58 UTC 2018 - knut.anders...@suse.com
+
+- Really translate firewalld zones (bsc#1082246)
+- 4.0.16
+
+---
+Wed Feb 14 10:40:04 UTC 2018 - knut.anders...@suse.com
+
+- Virtualization Bridge Proposal: Do not propose network interfaces
+  without link as bridgeable (bsc#1062596, bsc#1072951).
+- 4.0.15
+
+---
 Wed Jan 24 16:03:20 UTC 2018 - mfi...@suse.com
 
 - bnc#1056109
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.14/package/yast2-network.spec 
new/yast2-network-4.0.16/package/yast2-network.spec
--- old/yast2-network-4.0.14/package/yast2-network.spec 2018-01-25 
10:37:34.0 +0100
+++ new/yast2-network-4.0.16/package/yast2-network.spec 2018-02-23 
12:45:48.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.14
+Version:4.0.16
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.14/src/include/network/lan/address.rb 
new/yast2-network-4.0.16/src/include/network/lan/address.rb
--- old/yast2-network-4.0.14/src/include/network/lan/address.rb 2018-01-25 
10:37:34.0 +0100
+++ new/yast2-network-4.0.16/src/include/network/lan/address.rb 2018-02-23 
12:45:48.0 +0100
@@ -1015,39 +1015,11 @@
   true
 end
 
-# If the traffic would be blocked, ask the user
-# if he wants to change it
-# @param [Hash] event  the event being handled
-# @return change it?
-def NeedToAssignFwZone(event)
-  event = deep_copy(event)
-  ret = Ops.get(event, "ID")
-  if ret == :next
-# If firewall is active and interface in no zone, nothing
-# gets through (#62309) so warn and redirect to details
-name = Convert.to_string(UI.QueryWidget(Id("IFCFGID"), :Value))
-if SuSEFirewall4Network.IsOn &&
-SuSEFirewall4Network.GetZoneOfInterface(name) == "" &&
-SuSEFirewall4Network.UnconfiguredIsBlocked
-  return Popup.YesNoHeadline(
-Label.WarningMsg,
-_(
-  "The firewall is active, but this interface is not\n" \
-"in any zone. All its traffic would be 

commit yast2-network for openSUSE:Factory

2018-01-27 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-01-28 00:37:35

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Jan 28 00:37:35 2018 rev:378 rq:569453 version:4.0.14

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2018-01-17 21:42:19.168115397 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-01-28 00:37:37.374556839 +0100
@@ -1,0 +2,8 @@
+Wed Jan 24 16:03:20 UTC 2018 - mfi...@suse.com
+
+- bnc#1056109
+  - improved device name collision recognition when applying device
+renaming according to the AY profile
+- 4.0.14
+
+---

Old:

  yast2-network-4.0.13.tar.bz2

New:

  yast2-network-4.0.14.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.YrDWf9/_old  2018-01-28 00:37:38.002527585 +0100
+++ /var/tmp/diff_new_pack.YrDWf9/_new  2018-01-28 00:37:38.006527399 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.13
+Version:4.0.14
 Release:0
 BuildArch:  noarch
 

++ yast2-network-4.0.13.tar.bz2 -> yast2-network-4.0.14.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.13/package/yast2-network.changes 
new/yast2-network-4.0.14/package/yast2-network.changes
--- old/yast2-network-4.0.13/package/yast2-network.changes  2017-12-11 
16:57:37.0 +0100
+++ new/yast2-network-4.0.14/package/yast2-network.changes  2018-01-25 
10:37:34.0 +0100
@@ -1,4 +1,12 @@
 ---
+Wed Jan 24 16:03:20 UTC 2018 - mfi...@suse.com
+
+- bnc#1056109
+  - improved device name collision recognition when applying device
+renaming according to the AY profile
+- 4.0.14
+
+---
 Mon Dec 11 11:29:18 UTC 2017 - knut.anders...@suse.com
 
 - Remote: reimplemented the module dialogs and clients under
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-4.0.13/package/yast2-network.spec 
new/yast2-network-4.0.14/package/yast2-network.spec
--- old/yast2-network-4.0.13/package/yast2-network.spec 2017-12-11 
16:57:37.0 +0100
+++ new/yast2-network-4.0.14/package/yast2-network.spec 2018-01-25 
10:37:34.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:4.0.13
+Version:4.0.14
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-4.0.13/src/lib/network/network_autoyast.rb 
new/yast2-network-4.0.14/src/lib/network/network_autoyast.rb
--- old/yast2-network-4.0.13/src/lib/network/network_autoyast.rb
2017-12-11 16:57:37.0 +0100
+++ new/yast2-network-4.0.14/src/lib/network/network_autoyast.rb
2018-01-25 10:37:34.0 +0100
@@ -292,6 +292,7 @@
 
   # selecting according device name is unreliable (selects only in between 
configured devices)
   LanItems.current = item
+  LanItems.InitItemUdevRule(item)
 
   if !attr.nil? && !key.nil?
 # find out what attribude is currently used for setting device name and
@@ -332,16 +333,11 @@
 end
 next if !matching_item
 
-name_from = LanItems.GetDeviceName(item)
+name_from = item_name(item)
 log.info("Matching device found - renaming <#{name_from}> -> 
<#{name_to}>")
 
-# find rule in collision
-colliding_item, _item_map = LanItems.Items.find do |i, _|
-  LanItems.GetDeviceName(i) == name_to
-end
-
 # rename item in collision
-rename_lan_item(colliding_item, name_from)
+rename_lan_item(colliding_item(name_to), name_from)
 
 # rename matching item
 rename_lan_item(item, name_to, attr, key)
@@ -368,5 +364,24 @@
 
   true
 end
+
+# Returns items id, taking into account that item could be renamed
+#
+# @return [String] device name
+def item_name(item_id)
+  LanItems.renamed?(item_id) ? LanItems.renamed_to(item_id) : 
LanItems.GetDeviceName(item_id)
+   

commit yast2-network for openSUSE:Factory

2018-01-17 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2018-01-17 21:42:17

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Jan 17 21:42:17 2018 rev:377 rq:556017 version:4.0.13

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-08-13 14:54:43.122438385 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2018-01-17 21:42:19.168115397 +0100
@@ -1,0 +2,195 @@
+Mon Dec 11 11:29:18 UTC 2017 - knut.anders...@suse.com
+
+- Remote: reimplemented the module dialogs and clients under
+  y2remote libdir.
+- Fixed restart of xvnc as it is now a socket instead of a service
+  (bsc#1070582).
+- 4.0.13
+
+---
+Mon Dec  4 08:59:16 UTC 2017 - mfi...@suse.com
+
+- bnc#1061306
+  - use API for accessing device's sysconfig to avoid internal
+errors
+- 4.0.12
+
+---
+Wed Nov 29 09:46:50 UTC 2017 - knut.anders...@suse.com
+
+- Switched VNC service from xinetd to systemd.
+- VNC over HTTP service can be enabled/disabled separately.
+  (fate#323880, bnc#1058460)
+- 4.0.11
+
+---
+Fri Nov 24 11:57:33 UTC 2017 - knut.anders...@suse.com
+
+- Do not depend on SuSEFirewall for zone interface change. The zone
+  is now written in the ifcfg-file and wicked takes care of calling
+  firewalld commandline. (fate#323460)
+- 4.0.10
+
+---
+Wed Nov 22 11:59:22 UTC 2017 - knut.anders...@suse.com
+
+- AutoYaST: Do not display a warning about second stage being
+  disabled when importing the DNS configuration (added in 3.3.1)
+  once  the network configuration is done during the first stage
+  (since version 3.3.3) (bsc#1069761)
+- 4.0.9
+
+---
+Wed Nov 15 19:22:41 UTC 2017 - knut.anders...@suse.com
+
+- bnc#1066982
+  - Removed an unnecesary SuSEFirewall.Write call when storing the
+Firewall remote client configuration.
+- 4.0.8
+
+---
+Tue Nov 14 17:05:47 UTC 2017 - jreidin...@suse.com
+
+- bnc#1066982
+  - fixed initialization and storing of firewall widget
+- 4.0.7
+
+---
+Fri Nov  3 14:13:40 UTC 2017 - knut.anders...@suse.com
+
+- Fixed a method name typo and removed SuSEFirewall from Routing
+  module (bsc#572202)
+- 4.0.6
+
+---
+Wed Nov  1 10:17:20 UTC 2017 - mfi...@suse.com
+
+- bnc#1052042
+  - properly update canonical name and aliases in /etc/hosts when
+FQDN is provided as a hostname
+- 4.0.5
+
+---
+Wed Oct 25 12:51:56 UTC 2017 - knut.anders...@suse.com
+
+- Do not depend on SuSEfirewall2 anymore for writing IPv4
+  forwarding as Firewalld will be the default FW in SLE15.
+  (fate#323460, bsc#572202)
+- 4.0.4
+
+---
+Wed Oct  5 10:26:53 CEST 2017 - sch...@suse.de
+
+- Remote settings: Only reading firewall settings if we are really
+  in an installed system. (bnc#1055279, bnc#1058071)
+- 4.0.3
+
+---
+Wed Oct  4 06:43:54 UTC 2017 - knut.anders...@suse.com
+
+- AutoYaST: Do not display a warning about disabled second stage
+  when if network is configured before the proposal (bsc#1054400)
+- 4.0.2
+
+---
+Fri Sep 29 13:26:16 UTC 2017 - knut.anders...@suse.com
+
+- Do not blank out /etc/hosts when no  section is defined
+  (bsc#1058396)
+- 4.0.1
+
+---
+Tue Sep 26 12:44:47 UTC 2017 - knut.anders...@suse.com
+
+- Preload the global DHCLIENT_SET_HOSTNAME option based on linuxrc
+  sethostname option if given or based in control file default if
+  not. (bsc#1054933)
+- Do not override the configuration with the default defined in
+  the control file at the end of the first stage (bsc#1056633)
+- 4.0.0
+
+---
+Wed Aug 30 14:14:08 UTC 2017 - knut.anders...@suse.com
+
+- Moved wrap_text method to yast2 UI::TextHelpers (bsc#1055643)
+- 3.3.12
+
+---
+Mon Aug 21 07:02:32 UTC 2017 - lsle...@suse.cz
+
+- AutoYaST: Do not display a warning about disabled second stage
+  when the hostname setting is read out of profile 

commit yast2-network for openSUSE:Factory

2017-08-13 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-08-13 14:54:39

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Sun Aug 13 14:54:39 2017 rev:376 rq:515941 version:3.3.6

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-08-04 11:57:31.939275787 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-08-13 14:54:43.122438385 +0200
@@ -1,0 +2,7 @@
+Tue Aug  8 12:52:13 UTC 2017 - igonzalezs...@suse.com
+
+- bnc#1037727
+  - fixed device name recognition during AY installation
+- 3.3.6
+
+---

Old:

  yast2-network-3.3.5.tar.bz2

New:

  yast2-network-3.3.6.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.6n0V3T/_old  2017-08-13 14:54:44.310271708 +0200
+++ /var/tmp/diff_new_pack.6n0V3T/_new  2017-08-13 14:54:44.322270024 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.3.5
+Version:3.3.6
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.3.5.tar.bz2 -> yast2-network-3.3.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.5/package/yast2-network.changes 
new/yast2-network-3.3.6/package/yast2-network.changes
--- old/yast2-network-3.3.5/package/yast2-network.changes   2017-08-02 
15:32:11.181221713 +0200
+++ new/yast2-network-3.3.6/package/yast2-network.changes   2017-08-10 
17:02:49.346454947 +0200
@@ -1,4 +1,11 @@
 ---
+Tue Aug  8 12:52:13 UTC 2017 - igonzalezs...@suse.com
+
+- bnc#1037727
+  - fixed device name recognition during AY installation
+- 3.3.6
+
+---
 Wed Aug  2 13:01:48 UTC 2017 - knut.anders...@suse.com
 
 - bsc#1051624
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.5/package/yast2-network.spec 
new/yast2-network-3.3.6/package/yast2-network.spec
--- old/yast2-network-3.3.5/package/yast2-network.spec  2017-08-02 
15:32:11.181221713 +0200
+++ new/yast2-network-3.3.6/package/yast2-network.spec  2017-08-10 
17:02:49.346454947 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.3.5
+Version:3.3.6
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.3.5/src/lib/network/network_autoyast.rb 
new/yast2-network-3.3.6/src/lib/network/network_autoyast.rb
--- old/yast2-network-3.3.5/src/lib/network/network_autoyast.rb 2017-08-02 
15:32:11.193221713 +0200
+++ new/yast2-network-3.3.6/src/lib/network/network_autoyast.rb 2017-08-10 
17:02:49.690454947 +0200
@@ -332,7 +332,7 @@
 end
 next if !matching_item
 
-name_from = matching_item["ifcfg"] || matching_item["dev_name"]
+name_from = LanItems.GetDeviceName(item)
 log.info("Matching device found - renaming <#{name_from}> -> 
<#{name_to}>")
 
 # find rule in collision
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.5/test/host_test.rb 
new/yast2-network-3.3.6/test/host_test.rb
--- old/yast2-network-3.3.5/test/host_test.rb   2017-08-02 15:32:11.201221713 
+0200
+++ new/yast2-network-3.3.6/test/host_test.rb   2017-08-10 17:02:49.806454947 
+0200
@@ -261,6 +261,38 @@
   Yast::Host.Update(hostname, hostname, ip)
   expect(Yast::Host.name_map[ip]).not_to eql ["#{hostname} #{hostname}"]
 end
+
+it "doesn't write entry with duplicate hostname" do
+  ip = "1.1.1.1"
+  hostname = "linux"
+
+  Yast::Host.Update(hostname, hostname, [ip])
+  expect(Yast::Host.name_map[ip]).not_to eql ["#{hostname} #{hostname}"]
+end
+  end
+
+  describe ".ResolveHostnameToStaticIPs" do
+let(:static_ips) { ["1.1.1.1", "2.2.2.2"] }
+let(:fqhostname) { "sles.suse.de" }
+
+before(:each) do
+  allow(Yast::Host)
+.to receive(:StaticIPs)
+.and_return(static_ips)
+  allow(Yast::Hostname).to receive(:MergeFQ).and_return(fqhostname)
+end
+
+it "doesn't call .Update when an IP already has a hostname" do
+  hostname = "linux"
+
+  Yast::Host.Update(hostname, hostname, [static_ips[0]])
+
+  expect(Yast::Host)
+.not_to receive(:Update)
+.with(fqhostname, fqhostname, static_ips)
+
+  Yast::Host.ResolveHostnameToStaticIPs
+end
   end
 
   

commit yast2-network for openSUSE:Factory

2017-08-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-08-04 11:57:29

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Fri Aug  4 11:57:29 2017 rev:375 rq:514057 version:3.3.5

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-07-17 10:30:57.661344932 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-08-04 11:57:31.939275787 +0200
@@ -1,0 +2,38 @@
+Wed Aug  2 13:01:48 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1051624
+  - Fix default values for not existent sysconfig network variables
+when read.
+- 3.3.5
+
+---
+Fri Jul 28 08:46:43 UTC 2017 - igonzalezs...@suse.com
+
+- bnc#1050986
+  - fix udev rules export when more than one device is configured
+- bnc#1037727
+  - dhclient configuration warning message does not block AutoYaST
+- 3.3.4
+
+---
+Thu Jul 27 15:13:28 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1039851
+  - Host: Load /etc/hosts entries before import the ones defined in
+a given AutoYaST profile making it backward compatible.
+
+---
+Wed Jul 12 05:37:30 UTC 2017 - mfi...@suse.com
+
+- bnc#1038717
+  - avoid creating duplicate udev rules in AutoYaST installation
+
+---
+Fri Jul 11 09:40:11 UTC 2017 - mfi...@suse.com
+
+- bnc#1049814
+  - Moving network setup in AY into first stage completely when
+the second stage is disabled.
+- 3.3.3
+
+---

Old:

  yast2-network-3.3.2.tar.bz2

New:

  yast2-network-3.3.5.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.JEykcN/_old  2017-08-04 11:57:32.707167403 +0200
+++ /var/tmp/diff_new_pack.JEykcN/_new  2017-08-04 11:57:32.715166273 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.3.2
+Version:3.3.5
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.3.2.tar.bz2 -> yast2-network-3.3.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.2/.travis.yml 
new/yast2-network-3.3.5/.travis.yml
--- old/yast2-network-3.3.2/.travis.yml 2017-07-11 10:33:21.247935590 +0200
+++ new/yast2-network-3.3.5/.travis.yml 2017-08-02 15:32:11.173221713 +0200
@@ -5,6 +5,9 @@
 
 before_install:
   - docker build -t yast-network-image .
+  # list the installed packages (just for easier debugging)
+  - docker run --rm -it yast-network-image rpm -qa | sort
+
 script:
   # the "yast-travis-ruby" script is included in the base yastdevel/ruby image
   # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.2/package/yast2-network.changes 
new/yast2-network-3.3.5/package/yast2-network.changes
--- old/yast2-network-3.3.2/package/yast2-network.changes   2017-07-11 
10:33:21.255935590 +0200
+++ new/yast2-network-3.3.5/package/yast2-network.changes   2017-08-02 
15:32:11.181221713 +0200
@@ -1,4 +1,42 @@
 ---
+Wed Aug  2 13:01:48 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1051624
+  - Fix default values for not existent sysconfig network variables
+when read.
+- 3.3.5
+
+---
+Fri Jul 28 08:46:43 UTC 2017 - igonzalezs...@suse.com
+
+- bnc#1050986
+  - fix udev rules export when more than one device is configured
+- bnc#1037727
+  - dhclient configuration warning message does not block AutoYaST
+- 3.3.4
+
+---
+Thu Jul 27 15:13:28 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1039851
+  - Host: Load /etc/hosts entries before import the ones defined in
+a given AutoYaST profile making it backward compatible.
+
+---
+Wed Jul 12 05:37:30 UTC 2017 - mfi...@suse.com
+
+- bnc#1038717
+  - avoid creating duplicate udev rules in AutoYaST installation
+
+---
+Fri Jul 11 09:40:11 UTC 2017 - mfi...@suse.com
+
+- bnc#1049814
+  - Moving network setup in AY into first stage completely when
+the second stage is disabled.
+- 3.3.3
+

commit yast2-network for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-07-17 10:30:56

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Mon Jul 17 10:30:56 2017 rev:374 rq:509363 version:3.3.2

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-07-11 08:35:12.612184135 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-07-17 10:30:57.661344932 +0200
@@ -1,0 +2,7 @@
+Mon Jul 10 15:03:09 UTC 2017 - jreidin...@suse.com
+
+- Fix crash during write if Host.Read and Host.Import is called
+  together (bsc#1047929)
+- 3.3.2
+
+---

Old:

  yast2-network-3.3.1.tar.bz2

New:

  yast2-network-3.3.2.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.EbEuhQ/_old  2017-07-17 10:30:58.261260355 +0200
+++ /var/tmp/diff_new_pack.EbEuhQ/_new  2017-07-17 10:30:58.269259227 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.3.1
+Version:3.3.2
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.3.1.tar.bz2 -> yast2-network-3.3.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.1/package/yast2-network.changes 
new/yast2-network-3.3.2/package/yast2-network.changes
--- old/yast2-network-3.3.1/package/yast2-network.changes   2017-07-10 
10:44:20.810057139 +0200
+++ new/yast2-network-3.3.2/package/yast2-network.changes   2017-07-11 
10:33:21.255935590 +0200
@@ -1,4 +1,11 @@
 ---
+Mon Jul 10 15:03:09 UTC 2017 - jreidin...@suse.com
+
+- Fix crash during write if Host.Read and Host.Import is called
+  together (bsc#1047929)
+- 3.3.2
+
+---
 Tue Jul  4 15:06:40 UTC 2017 - lsle...@suse.cz
 
 - Display a warning in AutoYaST installation when importing the DNS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.1/package/yast2-network.spec 
new/yast2-network-3.3.2/package/yast2-network.spec
--- old/yast2-network-3.3.1/package/yast2-network.spec  2017-07-10 
10:44:20.814057139 +0200
+++ new/yast2-network-3.3.2/package/yast2-network.spec  2017-07-11 
10:33:21.255935590 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.3.1
+Version:3.3.2
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.3.1/src/lib/cfa/hosts.rb 
new/yast2-network-3.3.2/src/lib/cfa/hosts.rb
--- old/yast2-network-3.3.1/src/lib/cfa/hosts.rb2017-07-10 
10:44:20.946057139 +0200
+++ new/yast2-network-3.3.2/src/lib/cfa/hosts.rb2017-07-11 
10:33:21.275935590 +0200
@@ -11,12 +11,11 @@
   # @see 
http://www.rubydoc.info/github/config-files-api/config_files_api/CFA/BaseModel
   # @see 
http://www.rubydoc.info/github/config-files-api/config_files_api/CFA/AugeasParser
   class Hosts < BaseModel
-PARSER = AugeasParser.new("hosts.lns")
 PATH = "/etc/hosts".freeze
 include Yast::Logger
 
 def initialize(file_handler: nil)
-  super(PARSER, PATH, file_handler: file_handler)
+  super(AugeasParser.new("hosts.lns"), PATH, file_handler: file_handler)
 end
 
 # The old format used by {Yast::HostClass}.




commit yast2-network for openSUSE:Factory

2017-07-11 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-07-11 08:35:11

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Tue Jul 11 08:35:11 2017 rev:373 rq:509111 version:3.3.1

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-06-07 13:08:22.259983939 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-07-11 08:35:12.612184135 +0200
@@ -1,0 +2,31 @@
+Tue Jul  4 15:06:40 UTC 2017 - lsle...@suse.cz
+
+- Display a warning in AutoYaST installation when importing the DNS
+  configuration with disabled seconds stage (the second stage is
+  currently required for writing the config) (bsc#1046198)
+- 3.3.1
+
+---
+Tue Jul  4 12:57:05 UTC 2017 - mfi...@suse.com
+
+- bnc#1046735
+  - do not update sysconfig when no IP is given in case of static
+NIC configuration.
+
+---
+Tue Jul  4 09:18:21 UTC 2017 - mfi...@suse.com
+
+- bsc#1044982
+  - handle bad pci class/subclass ids used by Mellanox ConnectX-3
+  - nmoreychaisemar...@suse.com
+- 3.3.0
+
+---
+Tue Jul  4 07:21:29 UTC 2017 - mfi...@suse.com
+
+- bnc#1046677
+  - disable widgets which cannot be configured by the selected
+network service
+- 3.2.29
+
+---

Old:

  yast2-network-3.2.28.tar.bz2

New:

  yast2-network-3.3.1.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.GH32rG/_old  2017-07-11 08:35:13.376076361 +0200
+++ /var/tmp/diff_new_pack.GH32rG/_new  2017-07-11 08:35:13.380075797 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.28
+Version:3.3.1
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.28.tar.bz2 -> yast2-network-3.3.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.28/package/yast2-network.changes 
new/yast2-network-3.3.1/package/yast2-network.changes
--- old/yast2-network-3.2.28/package/yast2-network.changes  2017-05-30 
12:36:04.195065155 +0200
+++ new/yast2-network-3.3.1/package/yast2-network.changes   2017-07-10 
10:44:20.810057139 +0200
@@ -1,4 +1,35 @@
 ---
+Tue Jul  4 15:06:40 UTC 2017 - lsle...@suse.cz
+
+- Display a warning in AutoYaST installation when importing the DNS
+  configuration with disabled seconds stage (the second stage is
+  currently required for writing the config) (bsc#1046198)
+- 3.3.1
+
+---
+Tue Jul  4 12:57:05 UTC 2017 - mfi...@suse.com
+
+- bnc#1046735
+  - do not update sysconfig when no IP is given in case of static
+NIC configuration.
+
+---
+Tue Jul  4 09:18:21 UTC 2017 - mfi...@suse.com
+
+- bsc#1044982
+  - handle bad pci class/subclass ids used by Mellanox ConnectX-3
+  - nmoreychaisemar...@suse.com
+- 3.3.0
+
+---
+Tue Jul  4 07:21:29 UTC 2017 - mfi...@suse.com
+
+- bnc#1046677
+  - disable widgets which cannot be configured by the selected
+network service
+- 3.2.29
+
+---
 Thu May 25 09:27:09 UTC 2017 - mfi...@suse.com
 
 - bnc#1039532
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.28/package/yast2-network.spec 
new/yast2-network-3.3.1/package/yast2-network.spec
--- old/yast2-network-3.2.28/package/yast2-network.spec 2017-05-30 
12:36:04.195065155 +0200
+++ new/yast2-network-3.3.1/package/yast2-network.spec  2017-07-10 
10:44:20.814057139 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,13 @@
 
 
 Name:   yast2-network
-Version:3.2.28
+Version:3.3.1
 Release:0
 BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:%{name}-%{version}.tar.bz2
 
-Group:  System/YaST
-License:GPL-2.0
 BuildRequires:  update-desktop-files
 

commit yast2-network for openSUSE:Factory

2017-06-07 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-06-07 13:08:21

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Jun  7 13:08:21 2017 rev:372 rq:499657 version:3.2.28

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-04-12 17:10:40.734293297 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-06-07 13:08:22.259983939 +0200
@@ -1,0 +2,32 @@
+Thu May 25 09:27:09 UTC 2017 - mfi...@suse.com
+
+- bnc#1039532
+  - do not write hostname into /etc/hosts duplicitly for one IP
+  - configure static IPs without own hostname to resolve to system
+wide hostname during installation
+- 3.2.28
+
+---
+Mon May 22 13:19:22 UTC 2017 - gso...@suse.com
+
+- bsc#1036440 and bsc#994471
+  - Command "yast remote list" should not alter the system.
+- 3.2.27
+
+---
+Wed May 17 09:41:29 UTC 2017 - mfi...@suse.com
+
+- bnc#1038521
+  - do not raise an internal error during installation when
+multiple static device and hostname configurations were
+provided
+- 3.2.26
+
+---
+Tue May 16 07:45:01 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1035908
+  - Moved inst_install_inf client to yast2-installation.
+- 3.2.25
+
+---

Old:

  yast2-network-3.2.24.tar.bz2

New:

  yast2-network-3.2.28.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Skn481/_old  2017-06-07 13:08:22.787909441 +0200
+++ /var/tmp/diff_new_pack.Skn481/_new  2017-06-07 13:08:22.791908878 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.24
+Version:3.2.28
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.24.tar.bz2 -> yast2-network-3.2.28.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.24/package/yast2-network.changes 
new/yast2-network-3.2.28/package/yast2-network.changes
--- old/yast2-network-3.2.24/package/yast2-network.changes  2017-04-11 
16:51:32.229154641 +0200
+++ new/yast2-network-3.2.28/package/yast2-network.changes  2017-05-30 
12:36:04.195065155 +0200
@@ -1,4 +1,36 @@
 ---
+Thu May 25 09:27:09 UTC 2017 - mfi...@suse.com
+
+- bnc#1039532
+  - do not write hostname into /etc/hosts duplicitly for one IP
+  - configure static IPs without own hostname to resolve to system
+wide hostname during installation
+- 3.2.28
+
+---
+Mon May 22 13:19:22 UTC 2017 - gso...@suse.com
+
+- bsc#1036440 and bsc#994471
+  - Command "yast remote list" should not alter the system.
+- 3.2.27
+
+---
+Wed May 17 09:41:29 UTC 2017 - mfi...@suse.com
+
+- bnc#1038521
+  - do not raise an internal error during installation when
+multiple static device and hostname configurations were
+provided
+- 3.2.26
+
+---
+Tue May 16 07:45:01 UTC 2017 - knut.anders...@suse.com
+
+- bsc#1035908
+  - Moved inst_install_inf client to yast2-installation.
+- 3.2.25
+
+---
 Tue Apr  4 11:48:24 WEST 2017 - knut.anders...@suse.com
 
 - bsc#956755
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.24/package/yast2-network.spec 
new/yast2-network-3.2.28/package/yast2-network.spec
--- old/yast2-network-3.2.24/package/yast2-network.spec 2017-04-11 
16:51:32.229154641 +0200
+++ new/yast2-network-3.2.28/package/yast2-network.spec 2017-05-30 
12:36:04.195065155 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.24
+Version:3.2.28
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.24/src/clients/inst_install_inf.rb 
new/yast2-network-3.2.28/src/clients/inst_install_inf.rb
--- old/yast2-network-3.2.24/src/clients/inst_install_inf.rb2017-04-11 
16:51:32.229154641 +0200
+++ new/yast2-network-3.2.28/src/clients/inst_install_inf.rb1970-01-01 
01:00:00.0 +0100
@@ -1,14 +0,0 @@
-require "yast"
-require "network/install_inf_convertor"
-
-module Yast
-  

commit yast2-network for openSUSE:Factory

2017-04-12 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-04-12 17:10:39

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Apr 12 17:10:39 2017 rev:371 rq:487401 version:3.2.24

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-03-29 13:22:21.867179933 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-04-12 17:10:40.734293297 +0200
@@ -1,0 +2,23 @@
+Tue Apr  4 11:48:24 WEST 2017 - knut.anders...@suse.com
+
+- bsc#956755
+  - Don't propose wlan interfaces for the virtualization bridge.
+- 3.2.24
+
+---
+Mon Apr  3 08:27:26 UTC 2017 - mfi...@suse.com
+
+- bnc#927629
+  - improved adding routes. Accepts netmask or prefix length.
+  - fixed column name in add route dialog from Genmask to more
+common Netmask
+- 3.2.23
+
+---
+Thu Mar 30 13:52:36 WEST 2017 - knut.anders...@suse.com
+
+- Fix typo in edit_nic_name dialog using bus_id instead of busid
+  (bsc#1031120)
+- 3.2.22
+
+---

Old:

  yast2-network-3.2.21.tar.bz2

New:

  yast2-network-3.2.24.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.OFqmzi/_old  2017-04-12 17:10:41.822139301 +0200
+++ /var/tmp/diff_new_pack.OFqmzi/_new  2017-04-12 17:10:41.826138735 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.21
+Version:3.2.24
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.21.tar.bz2 -> yast2-network-3.2.24.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.21/package/yast2-network.changes 
new/yast2-network-3.2.24/package/yast2-network.changes
--- old/yast2-network-3.2.21/package/yast2-network.changes  2017-03-22 
13:09:17.716003918 +0100
+++ new/yast2-network-3.2.24/package/yast2-network.changes  2017-04-11 
16:51:32.229154641 +0200
@@ -1,4 +1,27 @@
 ---
+Tue Apr  4 11:48:24 WEST 2017 - knut.anders...@suse.com
+
+- bsc#956755
+  - Don't propose wlan interfaces for the virtualization bridge.
+- 3.2.24
+
+---
+Mon Apr  3 08:27:26 UTC 2017 - mfi...@suse.com
+
+- bnc#927629
+  - improved adding routes. Accepts netmask or prefix length.
+  - fixed column name in add route dialog from Genmask to more
+common Netmask
+- 3.2.23
+
+---
+Thu Mar 30 13:52:36 WEST 2017 - knut.anders...@suse.com
+
+- Fix typo in edit_nic_name dialog using bus_id instead of busid
+  (bsc#1031120)
+- 3.2.22
+
+---
 Tue Mar 21 09:24:29 UTC 2017 - jreidin...@suse.com
 
 - adapt to new version of cfa (new cfa needed for bsc#1023204)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.21/package/yast2-network.spec 
new/yast2-network-3.2.24/package/yast2-network.spec
--- old/yast2-network-3.2.21/package/yast2-network.spec 2017-03-22 
13:09:17.716003918 +0100
+++ new/yast2-network-3.2.24/package/yast2-network.spec 2017-04-11 
16:51:32.229154641 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.21
+Version:3.2.24
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.21/src/include/network/lan/help.rb 
new/yast2-network-3.2.24/src/include/network/lan/help.rb
--- old/yast2-network-3.2.21/src/include/network/lan/help.rb2017-03-22 
13:09:17.932003918 +0100
+++ new/yast2-network-3.2.24/src/include/network/lan/help.rb2017-04-11 
16:51:32.233154641 +0200
@@ -98,8 +98,12 @@
) +
  _(
"For each route, enter destination 
network IP address, gateway address,\n" \
- "and netmask. To omit any of these 
values, use a dash sign \"-\". Select\n" \
- "the device through which the traffic to 
the defined network will be routed.\"-\" is an alias for any interface.\n"
+ "and netmask. You can use either IPv4 
netmask or prefix length when defining\n" \
+ "network 

commit yast2-network for openSUSE:Factory

2017-03-29 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-03-29 13:22:20

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Wed Mar 29 13:22:20 2017 rev:370 rq:481973 version:3.2.21

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-03-10 20:38:48.880285239 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-03-29 13:22:21.867179933 +0200
@@ -1,0 +2,6 @@
+Tue Mar 21 09:24:29 UTC 2017 - jreidin...@suse.com
+
+- adapt to new version of cfa (new cfa needed for bsc#1023204)
+- 3.2.21
+
+---

Old:

  yast2-network-3.2.20.tar.bz2

New:

  yast2-network-3.2.21.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ddvlQc/_old  2017-03-29 13:22:22.547083778 +0200
+++ /var/tmp/diff_new_pack.ddvlQc/_new  2017-03-29 13:22:22.547083778 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.20
+Version:3.2.21
 Release:0
 BuildArch:  noarch
 
@@ -46,9 +46,9 @@
 Requires:   yast2-storage >= 2.21.11
 # Packages::vnc_packages
 Requires:   yast2-packager >= 3.1.47
-# cfa for parsing hosts
-BuildRequires:  rubygem(%rb_default_ruby_abi:cfa)
-Requires:   rubygem(%rb_default_ruby_abi:cfa)
+# cfa for parsing hosts, AugeasTree#unique_id
+BuildRequires:  rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
+Requires:   rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
 # lenses are needed to use cfa
 BuildRequires:  augeas-lenses
 Requires:   augeas-lenses

++ yast2-network-3.2.20.tar.bz2 -> yast2-network-3.2.21.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.20/package/yast2-network.changes 
new/yast2-network-3.2.21/package/yast2-network.changes
--- old/yast2-network-3.2.20/package/yast2-network.changes  2017-03-03 
12:00:02.76400 +0100
+++ new/yast2-network-3.2.21/package/yast2-network.changes  2017-03-22 
13:09:17.716003918 +0100
@@ -1,4 +1,10 @@
 ---
+Tue Mar 21 09:24:29 UTC 2017 - jreidin...@suse.com
+
+- adapt to new version of cfa (new cfa needed for bsc#1023204)
+- 3.2.21
+
+---
 Wed Feb 22 10:49:17 UTC 2017 - mfi...@suse.com
 
 - bnc#1020074
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.20/package/yast2-network.spec 
new/yast2-network-3.2.21/package/yast2-network.spec
--- old/yast2-network-3.2.20/package/yast2-network.spec 2017-03-03 
12:00:02.76800 +0100
+++ new/yast2-network-3.2.21/package/yast2-network.spec 2017-03-22 
13:09:17.716003918 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.20
+Version:3.2.21
 Release:0
 BuildArch:  noarch
 
@@ -48,9 +48,9 @@
 Requires:   yast2-storage >= 2.21.11
 # Packages::vnc_packages
 Requires:   yast2-packager >= 3.1.47
-# cfa for parsing hosts
-BuildRequires:  rubygem(%rb_default_ruby_abi:cfa)
-Requires:   rubygem(%rb_default_ruby_abi:cfa)
+# cfa for parsing hosts, AugeasTree#unique_id
+BuildRequires:  rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
+Requires:   rubygem(%rb_default_ruby_abi:cfa) >= 0.6.0
 # lenses are needed to use cfa
 BuildRequires:  augeas-lenses
 Requires:   augeas-lenses
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.20/src/lib/cfa/hosts.rb 
new/yast2-network-3.2.21/src/lib/cfa/hosts.rb
--- old/yast2-network-3.2.20/src/lib/cfa/hosts.rb   2017-03-03 
12:00:03.00400 +0100
+++ new/yast2-network-3.2.21/src/lib/cfa/hosts.rb   2017-03-22 
13:09:17.984003918 +0100
@@ -123,7 +123,7 @@
   aliases.each do |a|
 aliases_col.add(a)
   end
-  data.add(unique_id, entry_line)
+  data.add(data.unique_id, entry_line)
 end
 
 # Removes hostname from all entries in hosts table.
@@ -193,14 +193,5 @@
   result.concat(aliases_for(entry))
   result.join(" ")
 end
-
-# helper to generate unique id for cfa entry
-def unique_id
-  id = 1
-  loop do
-return id.to_s unless data[id.to_s]
-id += 1
-  end
-end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.20/test/host_test.rb 
new/yast2-network-3.2.21/test/host_test.rb
--- old/yast2-network-3.2.20/test/host_test.rb  2017-03-03 

commit yast2-network for openSUSE:Factory

2017-03-10 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-03-10 20:38:48

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Fri Mar 10 20:38:48 2017 rev:369 rq:469519 version:3.2.20

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-02-04 16:52:31.453298541 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-03-10 20:38:48.880285239 +0100
@@ -1,0 +2,8 @@
+Wed Feb 22 10:49:17 UTC 2017 - mfi...@suse.com
+
+- bnc#1020074
+  - when incomplete udev rule is read from the AY profile, it is
+ignored instead of raising an internal error.
+- 3.2.20
+
+---

Old:

  yast2-network-3.2.19.tar.bz2

New:

  yast2-network-3.2.20.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.T69ntf/_old  2017-03-10 20:38:49.564188327 +0100
+++ /var/tmp/diff_new_pack.T69ntf/_new  2017-03-10 20:38:49.564188327 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.19
+Version:3.2.20
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.19.tar.bz2 -> yast2-network-3.2.20.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.19/package/yast2-network.changes 
new/yast2-network-3.2.20/package/yast2-network.changes
--- old/yast2-network-3.2.19/package/yast2-network.changes  2017-01-31 
09:53:13.843173433 +0100
+++ new/yast2-network-3.2.20/package/yast2-network.changes  2017-03-03 
12:00:02.76400 +0100
@@ -1,4 +1,12 @@
 ---
+Wed Feb 22 10:49:17 UTC 2017 - mfi...@suse.com
+
+- bnc#1020074
+  - when incomplete udev rule is read from the AY profile, it is
+ignored instead of raising an internal error.
+- 3.2.20
+
+---
 Thu Jan 19 15:22:03 UTC 2017 - kanders...@suse.com
 
 - Added network proposal using the new summary api and the new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.19/package/yast2-network.spec 
new/yast2-network-3.2.20/package/yast2-network.spec
--- old/yast2-network-3.2.19/package/yast2-network.spec 2017-01-31 
09:53:13.843173433 +0100
+++ new/yast2-network-3.2.20/package/yast2-network.spec 2017-03-03 
12:00:02.76800 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.19
+Version:3.2.20
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.2.19/src/lib/network/network_autoyast.rb 
new/yast2-network-3.2.20/src/lib/network/network_autoyast.rb
--- old/yast2-network-3.2.19/src/lib/network/network_autoyast.rb
2017-01-31 09:53:14.075173433 +0100
+++ new/yast2-network-3.2.20/src/lib/network/network_autoyast.rb
2017-03-03 12:00:03.04000 +0100
@@ -218,6 +218,15 @@
   ay_profile["networking"]
 end
 
+# Checks if the udev rule is valid for renaming a NIC
+def valid_rename_udev_rule?(rule)
+  return false if rule["name"].nil? || rule["name"].empty?
+  return false if rule["rule"].nil? || rule["rule"].empty?
+  return false if rule["value"].nil? || rule["value"].empty?
+
+  true
+end
+
 # Takes a list of udev rules and assignes them to corresponding devices.
 #
 # If a device has an udev rule defined already, it is overwritten by new 
one.
@@ -228,7 +237,11 @@
   udev_rules.each do |rule|
 name_to = rule["name"]
 attr = rule["rule"]
-key = rule["value"].downcase
+key = rule["value"]
+
+next if !valid_rename_udev_rule?(rule)
+key.downcase!
+
 item, matching_item = LanItems.Items.find do |_, i|
   i["hwinfo"]["busid"].downcase == key || i["hwinfo"]["mac"].downcase 
== key
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.19/test/network_autoyast_test.rb 
new/yast2-network-3.2.20/test/network_autoyast_test.rb
--- old/yast2-network-3.2.19/test/network_autoyast_test.rb  2017-01-31 
09:53:14.227173433 +0100
+++ new/yast2-network-3.2.20/test/network_autoyast_test.rb  2017-03-03 
12:00:03.16800 +0100
@@ -319,4 +319,33 @@
   end
 end
   end
+
+  describe "#valid_rename_udev_rule?" do
+it "fails when the rule do not contain new name" do
+  rule = { "rule" => "ATTR{address}", 

commit yast2-network for openSUSE:Factory

2017-02-04 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-02-04 15:18:25

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2017-01-23 11:26:12.672978570 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-02-04 16:52:31.453298541 +0100
@@ -1,0 +2,14 @@
+Thu Jan 19 15:22:03 UTC 2017 - kanders...@suse.com
+
+- Added network proposal using the new summary api and the new
+  proposal_client flag 'label_proposal' for CASP special formmating
+  (fate#322328).
+- 3.2.19
+
+---
+Wed Jan 18 07:54:01 UTC 2017 - kanders...@suse.com
+
+- Added summaries for the configured interfaces, particulary an one
+  line summary. (fate#322328)
+
+---

Old:

  yast2-network-3.2.18.tar.bz2

New:

  yast2-network-3.2.19.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.JZ9zZR/_old  2017-02-04 16:52:31.961226223 +0100
+++ /var/tmp/diff_new_pack.JZ9zZR/_new  2017-02-04 16:52:31.961226223 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.18
+Version:3.2.19
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.18.tar.bz2 -> yast2-network-3.2.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.18/package/yast2-network.changes 
new/yast2-network-3.2.19/package/yast2-network.changes
--- old/yast2-network-3.2.18/package/yast2-network.changes  2017-01-16 
17:29:44.020382000 +0100
+++ new/yast2-network-3.2.19/package/yast2-network.changes  2017-01-31 
09:53:13.843173433 +0100
@@ -1,4 +1,18 @@
 ---
+Thu Jan 19 15:22:03 UTC 2017 - kanders...@suse.com
+
+- Added network proposal using the new summary api and the new
+  proposal_client flag 'label_proposal' for CASP special formmating
+  (fate#322328).
+- 3.2.19
+
+---
+Wed Jan 18 07:54:01 UTC 2017 - kanders...@suse.com
+
+- Added summaries for the configured interfaces, particulary an one
+  line summary. (fate#322328)
+
+---
 Wed Jan 11 00:56:09 UTC 2017 - kanders...@suse.com
 
 - Fixed the assignment of udev rules to Lan Items when a previous
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.18/package/yast2-network.spec 
new/yast2-network-3.2.19/package/yast2-network.spec
--- old/yast2-network-3.2.18/package/yast2-network.spec 2017-01-16 
17:29:44.020382000 +0100
+++ new/yast2-network-3.2.19/package/yast2-network.spec 2017-01-31 
09:53:13.843173433 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.18
+Version:3.2.19
 Release:0
 BuildArch:  noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.18/src/clients/network_proposal.rb 
new/yast2-network-3.2.19/src/clients/network_proposal.rb
--- old/yast2-network-3.2.18/src/clients/network_proposal.rb1970-01-01 
01:00:00.0 +0100
+++ new/yast2-network-3.2.19/src/clients/network_proposal.rb2017-01-31 
09:53:13.935173433 +0100
@@ -0,0 +1,2 @@
+require "network/clients/network_proposal"
+Yast::NetworkProposal.run
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.2.18/src/lib/network/clients/network_proposal.rb 
new/yast2-network-3.2.19/src/lib/network/clients/network_proposal.rb
--- old/yast2-network-3.2.18/src/lib/network/clients/network_proposal.rb
1970-01-01 01:00:00.0 +0100
+++ new/yast2-network-3.2.19/src/lib/network/clients/network_proposal.rb
2017-01-31 09:53:14.063173433 +0100
@@ -0,0 +1,47 @@
+require "installation/proposal_client"
+
+module Yast
+  # Proposal client for Network configuration
+  class NetworkProposal < ::Installation::ProposalClient
+include Yast::I18n
+include Yast::Logger
+
+def initialize
+  Yast.import "UI"
+  Yast.import "Lan"
+  Yast.import "LanItems"
+
+  textdomain "installation"
+end
+
+def description
+  {
+"rich_text_title" => _("Network Configuration"),
+"menu_title"  => _("Network Configuration"),
+"id"  => "network"
+  }
+end
+
+def 

commit yast2-network for openSUSE:Factory

2017-01-23 Thread root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2017-01-23 11:26:11

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-12-26 21:44:14.449473289 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2017-01-23 11:26:12.672978570 +0100
@@ -1,0 +2,7 @@
+Wed Jan 11 00:56:09 UTC 2017 - kanders...@suse.com
+
+- Fixed the assignment of udev rules to Lan Items when a previous
+  one does not exist (bsc#996879).
+- 3.2.18
+
+---

Old:

  yast2-network-3.2.17.tar.bz2

New:

  yast2-network-3.2.18.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.U4MzYW/_old  2017-01-23 11:26:13.208902600 +0100
+++ /var/tmp/diff_new_pack.U4MzYW/_new  2017-01-23 11:26:13.216901466 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.17
+Version:3.2.18
 Release:0
 BuildArch:  noarch
 

++ yast2-network-3.2.17.tar.bz2 -> yast2-network-3.2.18.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.17/.travis.yml 
new/yast2-network-3.2.18/.travis.yml
--- old/yast2-network-3.2.17/.travis.yml2016-12-20 09:49:36.693339548 
+0100
+++ new/yast2-network-3.2.18/.travis.yml2017-01-16 17:29:43.928382000 
+0100
@@ -1,18 +1,11 @@
-language: cpp
-compiler:
-- gcc
+sudo: required
+language: bash
+services:
+  - docker
+
 before_install:
-# disable rvm, use system Ruby
-- rvm reset
-# install newer augeasget repo with newer augeas, otherwise ruby-augeas 
fails (see https://github.com/yast/yast-network/pull/454#issuecomment-253795507)
-- sudo add-apt-repository -y ppa:raphink/augeas
-- sudo apt-get update
-- sudo apt-get install libaugeas-dev libxml2-dev
-# end of augeas install
-- wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
-- sh ./travis_setup.sh -p "ruby2.1-dev augeas-lenses libaugeas0 rake 
yast2-devtools yast2-testsuite yast2 yast2-storage yast2-proxy yast2-country 
yast2-packager" -g "rspec:3.3.0 yast-rake gettext rubocop:0.41.2 
simplecov:0.10.0 coveralls cfa cheetah"
+  - docker build -t yast-network-image .
 script:
-- rubocop
-- rake check:syntax
-- rake check:pot
-- COVERAGE=1 rake test:unit
+  # the "yast-travis-ruby" script is included in the base yastdevel/ruby image
+  # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
+  - docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-network-image yast-travis-ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.17/Dockerfile 
new/yast2-network-3.2.18/Dockerfile
--- old/yast2-network-3.2.17/Dockerfile 1970-01-01 01:00:00.0 +0100
+++ new/yast2-network-3.2.18/Dockerfile 2017-01-16 17:29:43.936382000 +0100
@@ -0,0 +1,3 @@
+FROM yastdevel/ruby
+COPY . /usr/src/app
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.17/package/yast2-network.changes 
new/yast2-network-3.2.18/package/yast2-network.changes
--- old/yast2-network-3.2.17/package/yast2-network.changes  2016-12-20 
09:49:36.805339548 +0100
+++ new/yast2-network-3.2.18/package/yast2-network.changes  2017-01-16 
17:29:44.020382000 +0100
@@ -1,4 +1,11 @@
 ---
+Wed Jan 11 00:56:09 UTC 2017 - kanders...@suse.com
+
+- Fixed the assignment of udev rules to Lan Items when a previous
+  one does not exist (bsc#996879).
+- 3.2.18
+
+---
 Fri Dec  9 09:19:16 UTC 2016 - mfi...@suse.com
 
 - bnc#1013605
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.17/package/yast2-network.spec 
new/yast2-network-3.2.18/package/yast2-network.spec
--- old/yast2-network-3.2.17/package/yast2-network.spec 2016-12-20 
09:49:36.805339548 +0100
+++ new/yast2-network-3.2.18/package/yast2-network.spec 2017-01-16 

commit yast2-network for openSUSE:Factory

2016-12-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-12-03 18:24:20

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-11-25 12:04:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-12-03 18:24:21.0 +0100
@@ -1,0 +2,46 @@
+Wed Nov 30 12:11:44 UTC 2016 - kanders...@suse.com
+
+- Linuxrc does not export some variables anymore and handles the
+  configuration of network directly, for that reason, some methods
+  or reponsibilities of InstallInfConvertor class are not needed
+  being removed.
+
+---
+Wed Nov 30 09:04:58 UTC 2016 - mfi...@suse.com
+
+- bnc#1012764
+  - made rpm architecture independent (noarch)
+- 3.2.15
+
+---
+Tue Nov 29 12:41:40 UTC 2016 - mfi...@suse.com
+
+- bnc#1012581
+  - do not crash with internal error stating undefined method when
+switching to "Hostname / DNS" tab when the system contains
+incorrect configuration of DHCLIENT_SET_HOSTNAME
+- 3.2.14
+
+---
+Mon Nov 28 21:15:00 UTC 2016 - mfi...@suse.com
+
+- bnc#1009931
+  - update item's overview with freshly edited values
+- 3.2.13
+
+---
+Wed Nov 23 09:18:33 UTC 2016 - mfi...@suse.com
+
+- bsc#984890
+  - new implementation of setting hostname via DHCP. User is
+allowed to set hostname via particular interface or set a
+reasonable default value for all interfaces.
+- bsc#1007172 (kanders...@suse.com)
+  - When an interface is enslaved in a bond the udev rule is modified
+using the bus_id instead of the mac address but some multiport
+cards could use the same bus_id. In such cases also the dev_port
+is needed. Taking this in account the dev_port will be added
+always when a udev rule based on bus_id is written.
+- 3.2.12
+
+---

Old:

  yast2-network-3.2.11.tar.bz2

New:

  yast2-network-3.2.15.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.kWTVN3/_old  2016-12-03 18:24:22.0 +0100
+++ /var/tmp/diff_new_pack.kWTVN3/_new  2016-12-03 18:24:22.0 +0100
@@ -17,8 +17,9 @@
 
 
 Name:   yast2-network
-Version:3.2.11
+Version:3.2.15
 Release:0
+BuildArch:  noarch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:%{name}-%{version}.tar.bz2
@@ -40,9 +41,6 @@
 
 #netconfig (FaTE #303618)
 Requires:   sysconfig >= 0.80.0
-#GetLanguageCountry
-#(in newly created yast2-country-data)
-Requires:   yast2-country-data >= 2.16.3
 # Storage::IsDeviceOnNetwork
 BuildRequires:  yast2-storage >= 2.21.11
 Requires:   yast2-storage >= 2.21.11
@@ -54,6 +52,8 @@
 # lenses are needed to use cfa
 BuildRequires:  augeas-lenses
 Requires:   augeas-lenses
+# BusID of all the cards with the same one (bsc#1007172)
+Requires:   hwinfo >= 21.35
 
 # testsuite
 BuildRequires:  rubygem(rspec)

++ yast2-network-3.2.11.tar.bz2 -> yast2-network-3.2.15.tar.bz2 ++
 2152 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2016-11-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-11-25 12:04:42

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-11-03 12:55:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-11-25 12:04:43.0 +0100
@@ -1,0 +2,14 @@
+Tue Nov 22 12:30:06 UTC 2016 - igonzalezs...@suse.com
+
+- Do not crash when removing an entry from the /etc/hosts file
+  (bsc#1010994)
+- 3.2.11
+
+---
+Tue Nov 22 11:34:08 UTC 2016 - jreidin...@suse.com
+
+- do not crash when on command line is passed non-number id
+  (bsc#1003908)
+- 3.2.10
+
+---

Old:

  yast2-network-3.2.9.tar.bz2

New:

  yast2-network-3.2.11.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.vSuwdp/_old  2016-11-25 12:04:45.0 +0100
+++ /var/tmp/diff_new_pack.vSuwdp/_new  2016-11-25 12:04:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.9
+Version:3.2.11
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.2.9.tar.bz2 -> yast2-network-3.2.11.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.9/package/yast2-network.changes 
new/yast2-network-3.2.11/package/yast2-network.changes
--- old/yast2-network-3.2.9/package/yast2-network.changes   2016-11-01 
13:07:50.0 +0100
+++ new/yast2-network-3.2.11/package/yast2-network.changes  2016-11-22 
14:08:16.0 +0100
@@ -1,4 +1,18 @@
 ---
+Tue Nov 22 12:30:06 UTC 2016 - igonzalezs...@suse.com
+
+- Do not crash when removing an entry from the /etc/hosts file
+  (bsc#1010994)
+- 3.2.11
+
+---
+Tue Nov 22 11:34:08 UTC 2016 - jreidin...@suse.com
+
+- do not crash when on command line is passed non-number id
+  (bsc#1003908)
+- 3.2.10
+
+---
 Thu Oct 27 11:55:10 UTC 2016 - jreidin...@suse.com
 
 - Make network summary consistent with other summaries
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.9/package/yast2-network.spec 
new/yast2-network-3.2.11/package/yast2-network.spec
--- old/yast2-network-3.2.9/package/yast2-network.spec  2016-11-01 
13:07:50.0 +0100
+++ new/yast2-network-3.2.11/package/yast2-network.spec 2016-11-22 
14:08:16.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.9
+Version:3.2.11
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.2.9/src/include/network/lan/cmdline.rb 
new/yast2-network-3.2.11/src/include/network/lan/cmdline.rb
--- old/yast2-network-3.2.9/src/include/network/lan/cmdline.rb  2016-11-01 
13:07:50.0 +0100
+++ new/yast2-network-3.2.11/src/include/network/lan/cmdline.rb 2016-11-22 
14:08:16.0 +0100
@@ -83,21 +83,21 @@
 end
 
 def validateId(options, config)
-  options = deep_copy(options)
-  config = deep_copy(config)
-  if Ops.get(options, "id").nil?
+  if !options["id"]
 Report.Error(_("Use \"id\" option to determine device."))
 return false
   end
 
-  if Ops.greater_than(
-Builtins.tointeger(Ops.get(options, "id", "0")),
-Ops.subtract(Builtins.size(config), 1)
-  )
+  begin
+id = Integer(options["id"])
+  rescue ArgumentError
+Report.Error(_("Invalid value '%s' for \"id\" option.") % 
options["id"])
+return false
+  end
+
+  if id >= config.size
 Report.Error(
-  _(
-"Value of \"id\" is out of range. Use \"list\" option to check 
max. value of \"id\"."
-  )
+  _("Value of \"id\" is out of range. Use \"list\" option to check 
max. value of \"id\".")
 )
 return false
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.9/src/lib/cfa/hosts.rb 
new/yast2-network-3.2.11/src/lib/cfa/hosts.rb
--- old/yast2-network-3.2.9/src/lib/cfa/hosts.rb2016-11-01 
13:07:50.0 +0100
+++ 

commit yast2-network for openSUSE:Factory

2016-11-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-11-03 12:55:14

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-10-31 09:53:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-11-03 12:55:15.0 +0100
@@ -1,0 +2,7 @@
+Thu Oct 27 11:55:10 UTC 2016 - jreidin...@suse.com
+
+- Make network summary consistent with other summaries
+  (bsc#745940)
+- 3.2.9
+
+---

Old:

  yast2-network-3.2.8.tar.bz2

New:

  yast2-network-3.2.9.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.AzF4ZR/_old  2016-11-03 12:55:16.0 +0100
+++ /var/tmp/diff_new_pack.AzF4ZR/_new  2016-11-03 12:55:16.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.8
+Version:3.2.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.2.8.tar.bz2 -> yast2-network-3.2.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.8/package/yast2-network.changes 
new/yast2-network-3.2.9/package/yast2-network.changes
--- old/yast2-network-3.2.8/package/yast2-network.changes   2016-10-25 
15:35:00.0 +0200
+++ new/yast2-network-3.2.9/package/yast2-network.changes   2016-11-01 
13:07:50.0 +0100
@@ -1,4 +1,11 @@
 ---
+Thu Oct 27 11:55:10 UTC 2016 - jreidin...@suse.com
+
+- Make network summary consistent with other summaries
+  (bsc#745940)
+- 3.2.9
+
+---
 Tue Oct 25 13:25:53 UTC 2016 - mvid...@suse.com
 
 - Fixed a hardcoded interface name in a CLI test (bsc#1006799)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.8/package/yast2-network.spec 
new/yast2-network-3.2.9/package/yast2-network.spec
--- old/yast2-network-3.2.8/package/yast2-network.spec  2016-10-25 
15:35:00.0 +0200
+++ new/yast2-network-3.2.9/package/yast2-network.spec  2016-11-01 
13:07:50.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.8
+Version:3.2.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.8/src/modules/Lan.rb 
new/yast2-network-3.2.9/src/modules/Lan.rb
--- old/yast2-network-3.2.8/src/modules/Lan.rb  2016-10-25 15:35:00.0 
+0200
+++ new/yast2-network-3.2.9/src/modules/Lan.rb  2016-11-01 13:07:50.0 
+0100
@@ -726,30 +726,21 @@
 # proposal (NetworkManager + ipv6)
 # @return [rich text, links]
 def SummaryGeneral
-  status_nm = nil
-  status_v6 = nil
-  status_virt_net = nil
-  href_nm = nil
-  href_v6 = nil
-  href_virt_net = nil
-  link_nm = nil
-  link_v6 = nil
-  link_virt_net = nil
+  # header for network summary list
   header_nm = _("Network Mode")
 
   if NetworkService.is_network_manager
 href_nm = "lan--nm-disable"
 # network mode: the interfaces are controlled by the user
 status_nm = _("Interfaces controlled by NetworkManager")
-# disable NetworkManager applet
-link_nm = Hyperlink(href_nm, _("Disable NetworkManager"))
+# switch from network manager to wicked
+link_nm = Hyperlink(href_nm, _("switch to Wicked"))
   else
 href_nm = "lan--nm-enable"
 # network mode
-status_nm = _("Traditional network setup with NetControl - ifup")
-# enable NetworkManager applet
-# for virtual network proposal (bridged) don't show hyperlink to 
enable networkmanager
-link_nm = Hyperlink(href_nm, _("Enable NetworkManager"))
+status_nm = _("Traditional network setup with Wicked")
+# switch from wicked to network manager
+link_nm = Hyperlink(href_nm, _("switch to NetworkManager"))
   end
 
   if @ipv6
@@ -757,13 +748,13 @@
 # ipv6 support is enabled
 status_v6 = _("Support for IPv6 protocol is enabled")
 # disable ipv6 support
-link_v6 = Hyperlink(href_v6, _("Disable IPv6"))
+link_v6 = Hyperlink(href_v6, _("disable"))
   else
 href_v6 = "ipv6-enable"
 # ipv6 support is disabled
 status_v6 = _("Support 

commit yast2-network for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-10-31 09:53:45

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-10-20 23:05:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-10-31 09:53:45.0 +0100
@@ -1,0 +2,6 @@
+Tue Oct 25 13:25:53 UTC 2016 - mvid...@suse.com
+
+- Fixed a hardcoded interface name in a CLI test (bsc#1006799)
+- 3.2.8
+
+---

Old:

  yast2-network-3.2.7.tar.bz2

New:

  yast2-network-3.2.8.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ZnVkRi/_old  2016-10-31 09:53:46.0 +0100
+++ /var/tmp/diff_new_pack.ZnVkRi/_new  2016-10-31 09:53:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.7
+Version:3.2.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.2.7.tar.bz2 -> yast2-network-3.2.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/package/yast2-network.changes 
new/yast2-network-3.2.8/package/yast2-network.changes
--- old/yast2-network-3.2.7/package/yast2-network.changes   2016-10-17 
11:39:41.0 +0200
+++ new/yast2-network-3.2.8/package/yast2-network.changes   2016-10-25 
15:35:00.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Oct 25 13:25:53 UTC 2016 - mvid...@suse.com
+
+- Fixed a hardcoded interface name in a CLI test (bsc#1006799)
+- 3.2.8
+
+---
 Mon Oct 17 08:13:38 UTC 2016 - kanders...@suse.com
 
 - Bridge handling has been improved (bsc#962824).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/package/yast2-network.spec 
new/yast2-network-3.2.8/package/yast2-network.spec
--- old/yast2-network-3.2.7/package/yast2-network.spec  2016-10-17 
11:39:41.0 +0200
+++ new/yast2-network-3.2.8/package/yast2-network.spec  2016-10-25 
15:35:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.7
+Version:3.2.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/t/add-del.t 
new/yast2-network-3.2.8/t/add-del.t
--- old/yast2-network-3.2.7/t/add-del.t 2016-10-17 11:39:41.0 +0200
+++ new/yast2-network-3.2.8/t/add-del.t 2016-10-25 15:35:00.0 +0200
@@ -17,12 +17,13 @@
 
 YAST=/usr/sbin/yast
 
-echo "# assume and check that eth0 exists, as a base for the vlan"
-ip addr show dev eth0
-echo "ok 1 eth0: exists already"
+echo "# find the base device for the vlan"
+BASEDEVICE=$(ip -o addr show scope global | head -n1 | cut -d' ' -f2)
+ip addr show dev $BASEDEVICE
+echo "ok 1 $BASEDEVICE: found"
 
 echo "# add a (virtual) interface"
-$YAST lan add name=vlan50 ethdevice=eth0 bootproto=dhcp || tapfail
+$YAST lan add name=vlan50 ethdevice=$BASEDEVICE bootproto=dhcp || tapfail
 echo "ok 2 vlan50: added"
 
 # check it has worked




commit yast2-network for openSUSE:Factory

2016-10-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-10-20 23:05:59

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-10-13 11:25:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-10-20 23:05:59.0 +0200
@@ -1,0 +2,25 @@
+Mon Oct 17 08:13:38 UTC 2016 - kanders...@suse.com
+
+- Bridge handling has been improved (bsc#962824).
+  - "NONE" is shown instead of 0.0.0.0 for old bridge configuration
+  - The bridge master is shown in the enslaved interface.
+  - The interfaces overview is updated after a bridge is modified
+  - The interfaces enlsaved are not lost when save in a different
+tab.
+- 3.2.7
+
+---
+Mon Oct 17 07:01:24 UTC 2016 - jreidin...@suse.com
+
+- fix crash when dummy ip is not needed
+  (found during testing of bsc#877047)
+- 3.2.6
+
+---
+Fri Oct 14 14:08:31 UTC 2016 - jreidin...@suse.com
+
+- optimize loading /etc/hosts if there is a lot of entries
+  (bsc#877047)
+- 3.2.5
+
+---

Old:

  yast2-network-3.2.4.tar.bz2

New:

  yast2-network-3.2.7.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.XRRT15/_old  2016-10-20 23:06:00.0 +0200
+++ /var/tmp/diff_new_pack.XRRT15/_new  2016-10-20 23:06:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.4
+Version:3.2.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,8 +31,8 @@
 
 # yast2 v3.1.86: Added ServicesProposal library
 BuildRequires:  yast2 >= 3.1.86
-# yast2 v3.1.135: Fixed Hostname API
-Requires:   yast2 >= 3.1.136
+# Network: Adapt old enslaved interface config
+Requires:   yast2 >= 3.1.206.2
 
 # Product control need xml agent
 BuildRequires:  yast2-xml
@@ -48,6 +48,12 @@
 Requires:   yast2-storage >= 2.21.11
 # Packages::vnc_packages
 Requires:   yast2-packager >= 3.1.47
+# cfa for parsing hosts
+BuildRequires:  rubygem(%rb_default_ruby_abi:cfa)
+Requires:   rubygem(%rb_default_ruby_abi:cfa)
+# lenses are needed to use cfa
+BuildRequires:  augeas-lenses
+Requires:   augeas-lenses
 
 # testsuite
 BuildRequires:  rubygem(rspec)
@@ -91,6 +97,8 @@
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
+%dir %{yast_libdir}/cfa/
+%{yast_libdir}/cfa/hosts.rb
 %{yast_ydatadir}/network
 
 %dir %{yast_docdir}

++ yast2-network-3.2.4.tar.bz2 -> yast2-network-3.2.7.tar.bz2 ++
 2455 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2016-10-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-10-13 11:25:52

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-09-24 15:18:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-10-13 11:25:53.0 +0200
@@ -1,0 +2,36 @@
+Mon Oct 10 09:11:29 UTC 2016 - mfi...@suse.com
+
+- do not duplicate work of network service at the beginning of
+  AutoYaST's second stage - not loading modules and so on.
+- 3.2.4
+
+---
+Fri Oct  7 15:16:11 UTC 2016 - kanders...@suse.com
+
+- If an interface is not configured yet then just set the interface
+  link, the backend should handle at least the up event.
+  (bsc#991694)
+- 3.2.3
+
+---
+Fri Oct  7 15:12:05 UTC 2016 - an...@suse.com
+
+- Extra space in the remote administration dialog (bsc#988904)
+
+---
+Thu Oct  6 09:22:25 UTC 2016 - mfi...@suse.com
+
+- Use full interface up / down instead of setting just link
+  up / down to allow proper update of interface's configuration.
+  (bsc#991694)
+- 3.2.2
+
+---
+Wed Oct  5 13:49:08 UTC 2016 - an...@suse.com
+
+- If WIFI is configured during installation, make sure the packages
+  required for WIFI to work are installed in the resulting system
+  (bsc#1002700)
+- 3.2.1
+
+---
@@ -5 +41 @@
-- 3.1.171
+- 3.2.0

Old:

  yast2-network-3.1.171.tar.bz2

New:

  yast2-network-3.2.4.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.h2zVCD/_old  2016-10-13 11:25:54.0 +0200
+++ /var/tmp/diff_new_pack.h2zVCD/_new  2016-10-13 11:25:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.171
+Version:3.2.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.171.tar.bz2 -> yast2-network-3.2.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.171/package/yast2-network.changes 
new/yast2-network-3.2.4/package/yast2-network.changes
--- old/yast2-network-3.1.171/package/yast2-network.changes 2016-09-21 
13:38:52.0 +0200
+++ new/yast2-network-3.2.4/package/yast2-network.changes   2016-10-12 
14:00:20.0 +0200
@@ -1,8 +1,44 @@
 ---
+Mon Oct 10 09:11:29 UTC 2016 - mfi...@suse.com
+
+- do not duplicate work of network service at the beginning of
+  AutoYaST's second stage - not loading modules and so on.
+- 3.2.4
+
+---
+Fri Oct  7 15:16:11 UTC 2016 - kanders...@suse.com
+
+- If an interface is not configured yet then just set the interface
+  link, the backend should handle at least the up event.
+  (bsc#991694)
+- 3.2.3
+
+---
+Fri Oct  7 15:12:05 UTC 2016 - an...@suse.com
+
+- Extra space in the remote administration dialog (bsc#988904)
+
+---
+Thu Oct  6 09:22:25 UTC 2016 - mfi...@suse.com
+
+- Use full interface up / down instead of setting just link
+  up / down to allow proper update of interface's configuration.
+  (bsc#991694)
+- 3.2.2
+
+---
+Wed Oct  5 13:49:08 UTC 2016 - an...@suse.com
+
+- If WIFI is configured during installation, make sure the packages
+  required for WIFI to work are installed in the resulting system
+  (bsc#1002700)
+- 3.2.1
+
+---
 Wed Sep 21 09:57:30 UTC 2016 - jreidin...@suse.com
 
 - reduce rpm build time (bsc#999203)
-- 3.1.171
+- 3.2.0
 
 ---
 Wed Sep  7 11:23:16 UTC 2016 - mfi...@suse.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.171/package/yast2-network.spec 
new/yast2-network-3.2.4/package/yast2-network.spec
--- old/yast2-network-3.1.171/package/yast2-network.spec2016-09-21 
13:38:52.0 +0200
+++ new/yast2-network-3.2.4/package/yast2-network.spec  2016-10-12 
14:00:20.0 +0200
@@ 

commit yast2-network for openSUSE:Factory

2016-09-24 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-09-24 15:18:43

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-09-17 14:35:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-09-24 15:18:45.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 21 09:57:30 UTC 2016 - jreidin...@suse.com
+
+- reduce rpm build time (bsc#999203)
+- 3.1.171
+
+---

Old:

  yast2-network-3.1.170.tar.bz2

New:

  yast2-network-3.1.171.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.WqEPuO/_old  2016-09-24 15:18:46.0 +0200
+++ /var/tmp/diff_new_pack.WqEPuO/_new  2016-09-24 15:18:46.0 +0200
@@ -17,20 +17,14 @@
 
 
 Name:   yast2-network
-Version:3.1.170
+Version:3.1.171
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:%{name}-%{version}.tar.bz2
 
-# should be required by devtools
-BuildRequires:  perl-XML-Writer
-BuildRequires:  pkgconfig
-BuildRequires:  rpm
 BuildRequires:  update-desktop-files
-BuildRequires:  yast2-country
 BuildRequires:  yast2-devtools >= 3.1.15
-BuildRequires:  yast2-proxy
 Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
@@ -40,6 +34,10 @@
 # yast2 v3.1.135: Fixed Hostname API
 Requires:   yast2 >= 3.1.136
 
+# Product control need xml agent
+BuildRequires:  yast2-xml
+Requires:   yast2-xml
+
 #netconfig (FaTE #303618)
 Requires:   sysconfig >= 0.80.0
 #GetLanguageCountry
@@ -49,7 +47,6 @@
 BuildRequires:  yast2-storage >= 2.21.11
 Requires:   yast2-storage >= 2.21.11
 # Packages::vnc_packages
-BuildRequires:  yast2-packager >= 3.1.47
 Requires:   yast2-packager >= 3.1.47
 
 # testsuite
@@ -85,6 +82,7 @@
 %{yast_ybindir}/*
 %{yast_yncludedir}/network
 %{yast_clientdir}/*.rb
+%dir %{yast_moduledir}/YaPI
 %{yast_moduledir}/YaPI/NETWORK.pm
 %{yast_moduledir}/*.rb
 %{yast_desktopdir}/*.desktop

++ yast2-network-3.1.170.tar.bz2 -> yast2-network-3.1.171.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.170/package/yast2-network.changes 
new/yast2-network-3.1.171/package/yast2-network.changes
--- old/yast2-network-3.1.170/package/yast2-network.changes 2016-09-14 
13:00:26.0 +0200
+++ new/yast2-network-3.1.171/package/yast2-network.changes 2016-09-21 
13:38:52.0 +0200
@@ -1,4 +1,10 @@
 ---
+Wed Sep 21 09:57:30 UTC 2016 - jreidin...@suse.com
+
+- reduce rpm build time (bsc#999203)
+- 3.1.171
+
+---
 Wed Sep  7 11:23:16 UTC 2016 - mfi...@suse.com
 
 - bnc#993587
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.170/package/yast2-network.spec 
new/yast2-network-3.1.171/package/yast2-network.spec
--- old/yast2-network-3.1.170/package/yast2-network.spec2016-09-14 
13:00:26.0 +0200
+++ new/yast2-network-3.1.171/package/yast2-network.spec2016-09-21 
13:38:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.170
+Version:3.1.171
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -25,12 +25,8 @@
 
 Group:  System/YaST
 License:GPL-2.0
-# should be required by devtools
-BuildRequires:  perl-XML-Writer pkgconfig rpm
 BuildRequires:  update-desktop-files
 BuildRequires:  yast2-devtools >= 3.1.15
-BuildRequires:  yast2-country
-BuildRequires:  yast2-proxy
 Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
@@ -40,6 +36,10 @@
 # yast2 v3.1.135: Fixed Hostname API
 Requires:   yast2 >= 3.1.136
 
+# Product control need xml agent
+BuildRequires:  yast2-xml
+Requires:   yast2-xml
+
 #netconfig (FaTE #303618)
 Requires:   sysconfig >= 0.80.0
 #GetLanguageCountry
@@ -49,7 +49,6 @@
 BuildRequires:  yast2-storage >= 2.21.11
 Requires:   yast2-storage >= 2.21.11
 # Packages::vnc_packages
-BuildRequires:  yast2-packager >= 3.1.47
 Requires:   yast2-packager >= 3.1.47
 
 # testsuite
@@ -83,6 +82,7 @@
 %{yast_ybindir}/*
 %{yast_yncludedir}/network
 %{yast_clientdir}/*.rb
+%dir %{yast_moduledir}/YaPI
 %{yast_moduledir}/YaPI/NETWORK.pm
 %{yast_moduledir}/*.rb
 %{yast_desktopdir}/*.desktop
diff -urN '--exclude=CVS' 

commit yast2-network for openSUSE:Factory

2016-09-17 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-09-17 14:35:17

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-09-08 17:38:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-09-17 14:35:18.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep  7 11:23:16 UTC 2016 - mfi...@suse.com
+
+- bnc#993587
+  - extended fix from 3.1.168 to cover also virtual interfaces
+- 3.1.170
+
+---

Old:

  yast2-network-3.1.169.tar.bz2

New:

  yast2-network-3.1.170.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.WKnXVk/_old  2016-09-17 14:35:19.0 +0200
+++ /var/tmp/diff_new_pack.WKnXVk/_new  2016-09-17 14:35:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.169
+Version:3.1.170
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.169.tar.bz2 -> yast2-network-3.1.170.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.169/package/yast2-network.changes 
new/yast2-network-3.1.170/package/yast2-network.changes
--- old/yast2-network-3.1.169/package/yast2-network.changes 2016-09-06 
10:01:22.0 +0200
+++ new/yast2-network-3.1.170/package/yast2-network.changes 2016-09-14 
13:00:26.0 +0200
@@ -1,4 +1,11 @@
 ---
+Wed Sep  7 11:23:16 UTC 2016 - mfi...@suse.com
+
+- bnc#993587
+  - extended fix from 3.1.168 to cover also virtual interfaces
+- 3.1.170
+
+---
 Sat Sep  3 20:02:55 UTC 2016 - mfi...@suse.com
 
 - bnc#988157
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.169/package/yast2-network.spec 
new/yast2-network-3.1.170/package/yast2-network.spec
--- old/yast2-network-3.1.169/package/yast2-network.spec2016-09-06 
10:01:22.0 +0200
+++ new/yast2-network-3.1.170/package/yast2-network.spec2016-09-14 
13:00:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.169
+Version:3.1.170
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.169/src/include/network/routines.rb 
new/yast2-network-3.1.170/src/include/network/routines.rb
--- old/yast2-network-3.1.169/src/include/network/routines.rb   2016-09-06 
10:01:22.0 +0200
+++ new/yast2-network-3.1.170/src/include/network/routines.rb   2016-09-14 
13:00:26.0 +0200
@@ -686,7 +686,7 @@
 # @param Shell command to run
 # @return whether command execution succeeds
 def Run(command)
-  ret = SCR.Execute(path(".target.bash"), command) == 0
+  ret = SCR.Execute(path(".target.bash"), command).zero?
 
   Builtins.y2error("Run <%1>: Command execution failed.", command) if !ret
 
@@ -694,9 +694,13 @@
 end
 # TODO: end
 
-# Return list of all interfaces present in the system (not only configured 
ones as NetworkInterfaces::List does).
+# Return list of all interfaces present in the system.
+#
+# It means all interfaces which exists in the system at the time.
+# /sys filesystem is used for checking that.
 #
 # @return [Array] of interface names.
+# FIXME: rename e.g. to sys_interfaces
 def GetAllInterfaces
   result = RunAndRead("ls /sys/class/net")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.169/src/modules/Lan.rb 
new/yast2-network-3.1.170/src/modules/Lan.rb
--- old/yast2-network-3.1.169/src/modules/Lan.rb2016-09-06 
10:01:22.0 +0200
+++ new/yast2-network-3.1.170/src/modules/Lan.rb2016-09-14 
13:00:26.0 +0200
@@ -214,51 +214,27 @@
   down
 end
 
+# Checks local configuration if IPv6 is allowed
+#
+# return [Boolean] true when IPv6 is enabled in the system
 def readIPv6
-  @ipv6 = true
+  ipv6 = true
 
-  methods =
-# "module" : $[
-# "filelist" : ["ipv6", "50-ipv6.conf"],
-# "filepath" : "/etc/modprobe.d/",
-# "regexp"   : "^[[:space:]]*(install ipv6 /bin/true)"
-   

commit yast2-network for openSUSE:Factory

2016-09-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-09-08 17:38:13

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-31 00:01:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-09-08 17:38:15.0 +0200
@@ -1,0 +2,8 @@
+Sat Sep  3 20:02:55 UTC 2016 - mfi...@suse.com
+
+- bnc#988157
+  - disable DHCP autoconfiguration in installer when an interface
+configuration is provided via linuxrc
+- 3.1.169 
+
+---

Old:

  yast2-network-3.1.168.tar.bz2

New:

  yast2-network-3.1.169.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ppZDTO/_old  2016-09-08 17:38:16.0 +0200
+++ /var/tmp/diff_new_pack.ppZDTO/_new  2016-09-08 17:38:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.168
+Version:3.1.169
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.168.tar.bz2 -> yast2-network-3.1.169.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.168/package/yast2-network.changes 
new/yast2-network-3.1.169/package/yast2-network.changes
--- old/yast2-network-3.1.168/package/yast2-network.changes 2016-08-25 
16:43:51.0 +0200
+++ new/yast2-network-3.1.169/package/yast2-network.changes 2016-09-06 
10:01:22.0 +0200
@@ -1,4 +1,12 @@
 ---
+Sat Sep  3 20:02:55 UTC 2016 - mfi...@suse.com
+
+- bnc#988157
+  - disable DHCP autoconfiguration in installer when an interface
+configuration is provided via linuxrc
+- 3.1.169 
+
+---
 Wed Aug 24 10:54:55 UTC 2016 - mfi...@suse.com
 
 - bnc#993587
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.168/package/yast2-network.spec 
new/yast2-network-3.1.169/package/yast2-network.spec
--- old/yast2-network-3.1.168/package/yast2-network.spec2016-08-25 
16:43:51.0 +0200
+++ new/yast2-network-3.1.169/package/yast2-network.spec2016-09-06 
10:01:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.168
+Version:3.1.169
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.168/src/clients/inst_setup_dhcp.rb 
new/yast2-network-3.1.169/src/clients/inst_setup_dhcp.rb
--- old/yast2-network-3.1.168/src/clients/inst_setup_dhcp.rb2016-08-25 
16:43:51.0 +0200
+++ new/yast2-network-3.1.169/src/clients/inst_setup_dhcp.rb2016-09-06 
10:01:22.0 +0200
@@ -1,12 +1,24 @@
 require "yast"
 require "network/network_autoconfiguration"
 
-def main
-  Yast::NetworkAutoconfiguration.instance.configure_dhcp
+module Yast
+  class SetupDhcp
+include Singleton
+include Logger
 
-  # if this is not wrapped in a def, ruby -cw says
-  # warning: possibly useless use of a literal in void context
-  :next
+def main
+  nac = Yast::NetworkAutoconfiguration.instance
+  if !nac.any_iface_active?
+nac.configure_dhcp
+  else
+log.info("Automatic DHCP configuration not started - an interface is 
already configured")
+  end
+
+  # if this is not wrapped in a def, ruby -cw says
+  # warning: possibly useless use of a literal in void context
+  :next
+end
+  end
 end
 
-main
+Yast::SetupDhcp.instance.main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.168/src/include/network/devices.rb 
new/yast2-network-3.1.169/src/include/network/devices.rb
--- old/yast2-network-3.1.168/src/include/network/devices.rb2016-08-25 
16:43:51.0 +0200
+++ new/yast2-network-3.1.169/src/include/network/devices.rb2016-09-06 
10:01:22.0 +0200
@@ -88,51 +88,5 @@
   Builtins.y2debug("Free device=%1", ret)
   ret
 end
-
-# Update Devices map
-# @param [String] type device type
-# @param [String] device device number
-# @param [Hash] newdev new device map
-# @param [Boolean] check if check if device already exists
-# @return true if success
-def ChangeDevice(type, device, newdev, check)
-  newdev = deep_copy(newdev)

commit yast2-network for openSUSE:Factory

2016-08-30 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-31 00:01:50

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-25 09:53:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-31 00:01:52.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 24 10:54:55 UTC 2016 - mfi...@suse.com
+
+- bnc#993587
+  - installer is able to newly configured set devices up in case of
+ssh/vnc installation
+- 3.1.168
+
+---

Old:

  yast2-network-3.1.167.tar.bz2

New:

  yast2-network-3.1.168.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.bozskv/_old  2016-08-31 00:01:53.0 +0200
+++ /var/tmp/diff_new_pack.bozskv/_new  2016-08-31 00:01:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.167
+Version:3.1.168
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.167.tar.bz2 -> yast2-network-3.1.168.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.167/package/yast2-network.changes 
new/yast2-network-3.1.168/package/yast2-network.changes
--- old/yast2-network-3.1.167/package/yast2-network.changes 2016-08-23 
09:35:26.0 +0200
+++ new/yast2-network-3.1.168/package/yast2-network.changes 2016-08-25 
16:43:51.0 +0200
@@ -1,4 +1,12 @@
 ---
+Wed Aug 24 10:54:55 UTC 2016 - mfi...@suse.com
+
+- bnc#993587
+  - installer is able to newly configured set devices up in case of
+ssh/vnc installation
+- 3.1.168
+
+---
 Fri Aug 19 08:59:14 UTC 2016 - mfi...@suse.com
 
 - bnc#991382 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.167/package/yast2-network.spec 
new/yast2-network-3.1.168/package/yast2-network.spec
--- old/yast2-network-3.1.167/package/yast2-network.spec2016-08-23 
09:35:26.0 +0200
+++ new/yast2-network-3.1.168/package/yast2-network.spec2016-08-25 
16:43:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.167
+Version:3.1.168
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.167/src/lib/network/network_autoconfiguration.rb 
new/yast2-network-3.1.168/src/lib/network/network_autoconfiguration.rb
--- old/yast2-network-3.1.167/src/lib/network/network_autoconfiguration.rb  
2016-08-23 09:35:26.0 +0200
+++ new/yast2-network-3.1.168/src/lib/network/network_autoconfiguration.rb  
2016-08-25 16:43:51.0 +0200
@@ -1,14 +1,15 @@
 # encoding: utf-8
 
 require "yast"
+require "network/wicked"
 
 module Yast
   # The class is responsible for generating / proposing automatic
   # configuration during installation workflow
   class NetworkAutoconfiguration
+include Wicked
 include Singleton
 include Logger
-include Yast
 
 Yast.import "Lan"
 Yast.import "LanItems"
@@ -18,8 +19,6 @@
 Yast.import "Arch"
 Yast.import "Host"
 
-BASH_PATH = Path.new(".target.bash")
-
 def configure_dhcp
   Yast.include self, "network/routines.rb"
 
@@ -142,17 +141,6 @@
   LanItems.Commit
 end
 
-# Reloads configuration for each device named in devs
-#
-# @devs [Array] list of device names
-# @return true if configuration was reloaded
-def reload_config(devs)
-  raise ArgumentError if devs.nil?
-  return true if devs.empty?
-
-  SCR.Execute(BASH_PATH, "wicked ifreload #{devs.join(" ")}") == 0
-end
-
 def delete_config(devname)
   LanItems.delete_dev(devname)
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.167/src/lib/network/wicked.rb 
new/yast2-network-3.1.168/src/lib/network/wicked.rb
--- old/yast2-network-3.1.167/src/lib/network/wicked.rb 1970-01-01 
01:00:00.0 +0100
+++ new/yast2-network-3.1.168/src/lib/network/wicked.rb 2016-08-25 
16:43:51.0 +0200
@@ -0,0 +1,20 @@
+# encoding: utf-8
+
+require "yast"
+
+module Yast
+  module Wicked
+BASH_PATH = Path.new(".target.bash")
+
+# Reloads configuration for each device 

commit yast2-network for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-25 09:53:04

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-22 10:48:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-25 09:53:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 19 08:59:14 UTC 2016 - mfi...@suse.com
+
+- bnc#991382 
+  - init and store IFPLUGD_PRIORITY properly
+- 3.1.167
+
+---

Old:

  yast2-network-3.1.166.tar.bz2

New:

  yast2-network-3.1.167.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.GMVRAW/_old  2016-08-25 09:53:07.0 +0200
+++ /var/tmp/diff_new_pack.GMVRAW/_new  2016-08-25 09:53:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.166
+Version:3.1.167
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.166.tar.bz2 -> yast2-network-3.1.167.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.166/package/yast2-network.changes 
new/yast2-network-3.1.167/package/yast2-network.changes
--- old/yast2-network-3.1.166/package/yast2-network.changes 2016-08-19 
16:48:53.0 +0200
+++ new/yast2-network-3.1.167/package/yast2-network.changes 2016-08-23 
09:35:26.0 +0200
@@ -1,4 +1,11 @@
 ---
+Fri Aug 19 08:59:14 UTC 2016 - mfi...@suse.com
+
+- bnc#991382 
+  - init and store IFPLUGD_PRIORITY properly
+- 3.1.167
+
+---
 Thu Aug 18 08:52:41 UTC 2016 - mfi...@suse.com
 
 - bnc#991486
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.166/package/yast2-network.spec 
new/yast2-network-3.1.167/package/yast2-network.spec
--- old/yast2-network-3.1.166/package/yast2-network.spec2016-08-19 
16:48:53.0 +0200
+++ new/yast2-network-3.1.167/package/yast2-network.spec2016-08-23 
09:35:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.166
+Version:3.1.167
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.166/src/include/network/lan/address.rb 
new/yast2-network-3.1.167/src/include/network/lan/address.rb
--- old/yast2-network-3.1.166/src/include/network/lan/address.rb
2016-08-19 16:48:53.0 +0200
+++ new/yast2-network-3.1.167/src/include/network/lan/address.rb
2016-08-23 09:35:26.0 +0200
@@ -1174,12 +1174,18 @@
   UI.ChangeWidget(
 Id("IFPLUGD_PRIORITY"),
 :Value,
-Builtins.tointeger(Ops.get_string(@settings, "IFPLUGD_PRIORITY", "0"))
+@settings["IFPLUGD_PRIORITY"].to_i
   )
 
   nil
 end
 
+# Stores content of IFPLUGD_PRIORITY widget into internal variables
+def store_ifplugd_priority(_key, _event)
+  ifp_prio = UI.QueryWidget(Id("IFPLUGD_PRIORITY"), :Value).to_s
+  LanItems.ifplugd_priority = ifp_prio if !ifp_prio.empty?
+end
+
 def general_tab
   type = LanItems.GetCurrentType
 
@@ -1408,7 +1414,8 @@
  " then we need a way to decide which interface to 
take up. Therefore we have to\n" \
  " set the priority of each interface.  \n"
  ),
-"init"=> fun_ref(method(:initIfplugdPriority), "void (string)")
+"init"=> fun_ref(method(:initIfplugdPriority), "void (string)"),
+"store"   => fun_ref(method(:store_ifplugd_priority), "void (string, 
map)")
   )
 
   Ops.set(wd, ["IFCFGTYPE", "items"], 
BuildTypesListCWM(NetworkInterfaces.GetDeviceTypes))
@@ -1504,12 +1511,6 @@
 ifcfgname = Ops.get_string(LanItems.getCurrentItem, "ifcfg", "")
 # general tab
 LanItems.startmode = Ops.get_string(@settings, "STARTMODE", "")
-if LanItems.startmode == "ifplugd"
-  ifp_prio = Builtins.tostring(
-UI.QueryWidget(Id("IFPLUGD_PRIORITY"), :Value)
-  )
-  LanItems.ifplugd_priority = ifp_prio if !ifp_prio.nil?
-end
 
 if SuSEFirewall4Network.IsInstalled
   zone = Ops.get_string(@settings, "FWZONE", "")




commit yast2-network for openSUSE:Factory

2016-08-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-22 10:48:20

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-18 10:20:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-22 10:48:21.0 +0200
@@ -1,0 +2,8 @@
+Thu Aug 18 08:52:41 UTC 2016 - mfi...@suse.com
+
+- bnc#991486
+  - extended fix for this bug from 3.1.163. Do not report invalid
+names incorrectly
+- 3.1.166  
+
+---

Old:

  yast2-network-3.1.165.tar.bz2

New:

  yast2-network-3.1.166.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.CSVcLj/_old  2016-08-22 10:48:22.0 +0200
+++ /var/tmp/diff_new_pack.CSVcLj/_new  2016-08-22 10:48:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.165
+Version:3.1.166
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.165.tar.bz2 -> yast2-network-3.1.166.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.165/CONTRIBUTING.md 
new/yast2-network-3.1.166/CONTRIBUTING.md
--- old/yast2-network-3.1.165/CONTRIBUTING.md   2016-08-15 08:58:35.0 
+0200
+++ new/yast2-network-3.1.166/CONTRIBUTING.md   2016-08-19 16:48:53.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.165/package/yast2-network.changes 
new/yast2-network-3.1.166/package/yast2-network.changes
--- old/yast2-network-3.1.165/package/yast2-network.changes 2016-08-15 
08:58:35.0 +0200
+++ new/yast2-network-3.1.166/package/yast2-network.changes 2016-08-19 
16:48:53.0 +0200
@@ -1,4 +1,12 @@
 ---
+Thu Aug 18 08:52:41 UTC 2016 - mfi...@suse.com
+
+- 

commit yast2-network for openSUSE:Factory

2016-08-18 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-18 10:20:02

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-10 19:54:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-18 10:20:03.0 +0200
@@ -1,0 +2,19 @@
+Thu Aug 11 19:02:36 UTC 2016 - mfi...@suse.com
+
+- bnc#985905 
+  - do not limit number of bonding slaves to 10
+- 3.1.165
+
+---
+Thu Aug 11 08:23:00 UTC 2016 - mfi...@suse.com
+
+- bnc#988786
+  - Create bridge when proposing configuration for VM host.
+- 3.1.164 
+
+---
+Wed Aug 10 18:07:12 UTC 2016 - an...@suse.com
+
+- Improved parsing of vlan ids that are longer than one character.
+
+---

Old:

  yast2-network-3.1.163.tar.bz2

New:

  yast2-network-3.1.165.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.KtMIDK/_old  2016-08-18 10:20:05.0 +0200
+++ /var/tmp/diff_new_pack.KtMIDK/_new  2016-08-18 10:20:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.163
+Version:3.1.165
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.163.tar.bz2 -> yast2-network-3.1.165.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.163/package/yast2-network.changes 
new/yast2-network-3.1.165/package/yast2-network.changes
--- old/yast2-network-3.1.163/package/yast2-network.changes 2016-08-09 
18:43:38.0 +0200
+++ new/yast2-network-3.1.165/package/yast2-network.changes 2016-08-15 
08:58:35.0 +0200
@@ -1,4 +1,23 @@
 ---
+Thu Aug 11 19:02:36 UTC 2016 - mfi...@suse.com
+
+- bnc#985905 
+  - do not limit number of bonding slaves to 10
+- 3.1.165
+
+---
+Thu Aug 11 08:23:00 UTC 2016 - mfi...@suse.com
+
+- bnc#988786
+  - Create bridge when proposing configuration for VM host.
+- 3.1.164 
+
+---
+Wed Aug 10 18:07:12 UTC 2016 - an...@suse.com
+
+- Improved parsing of vlan ids that are longer than one character.
+
+---
 Wed Aug 10 16:07:26 UTC 2016 - mfi...@suse.com
 
 - bnc#991486
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.163/package/yast2-network.spec 
new/yast2-network-3.1.165/package/yast2-network.spec
--- old/yast2-network-3.1.163/package/yast2-network.spec2016-08-09 
18:43:38.0 +0200
+++ new/yast2-network-3.1.165/package/yast2-network.spec2016-08-15 
08:58:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.163
+Version:3.1.165
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.163/src/include/network/lan/hardware.rb 
new/yast2-network-3.1.165/src/include/network/lan/hardware.rb
--- old/yast2-network-3.1.163/src/include/network/lan/hardware.rb   
2016-08-09 18:43:38.0 +0200
+++ new/yast2-network-3.1.165/src/include/network/lan/hardware.rb   
2016-08-15 08:58:35.0 +0200
@@ -834,7 +834,7 @@
 end
 if LanItems.type == "vlan"
   # for vlan devices named vlanN pre-set vlan_id to N, otherwise 
default to 0
-  LanItems.vlan_id = nm[VLAN_SIZE].to_i.to_s
+  LanItems.vlan_id = nm[VLAN_SIZE..-1]
 end
   end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.163/src/modules/Lan.rb 
new/yast2-network-3.1.165/src/modules/Lan.rb
--- old/yast2-network-3.1.163/src/modules/Lan.rb2016-08-09 
18:43:38.0 +0200
+++ new/yast2-network-3.1.165/src/modules/Lan.rb2016-08-15 
08:58:35.0 +0200
@@ -990,11 +990,16 @@
 configure_as_bridge_port(ifcfg)
 
 Ops.set(LanItems.Items, [current, "ifcfg"], new_ifcfg)
-LanItems.SetModified
 LanItems.force_restart = true
 Builtins.y2internal("List %1", 

commit yast2-network for openSUSE:Factory

2016-08-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-10 19:54:20

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-07-16 22:12:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-10 19:54:21.0 +0200
@@ -1,0 +2,30 @@
+Wed Aug 10 16:07:26 UTC 2016 - mfi...@suse.com
+
+- bnc#991486
+  - Do not allow creating device with oversized configuration name.
+- 3.1.163
+
+---
+Tue Aug  9 12:29:35 UTC 2016 - sch...@suse.de
+
+- Added entry "s390-devices" to the AutoYaST schema file.
+  Bug similar bnc#954412.
+- 3.1.162
+
+---
+Tue Aug  9 12:25:01 UTC 2016 - mfi...@suse.com
+
+- bnc#991920
+  - do not crash with internal error when renaming unconfigured
+device
+- 3.1.161 
+
+---
+Tue Aug  2 12:40:53 UTC 2016 - mfi...@suse.com
+
+- bnc#991382
+  - Do not crash with internal error when using "On Cable
+Connection" device activation mode.
+- 3.1.160
+
+---

Old:

  yast2-network-3.1.159.tar.bz2

New:

  yast2-network-3.1.163.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.w3rBNs/_old  2016-08-10 19:54:23.0 +0200
+++ /var/tmp/diff_new_pack.w3rBNs/_new  2016-08-10 19:54:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.159
+Version:3.1.163
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.159.tar.bz2 -> yast2-network-3.1.163.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.159/package/yast2-network.changes 
new/yast2-network-3.1.163/package/yast2-network.changes
--- old/yast2-network-3.1.159/package/yast2-network.changes 2016-07-15 
10:26:35.0 +0200
+++ new/yast2-network-3.1.163/package/yast2-network.changes 2016-08-09 
18:43:38.0 +0200
@@ -1,4 +1,34 @@
 ---
+Wed Aug 10 16:07:26 UTC 2016 - mfi...@suse.com
+
+- bnc#991486
+  - Do not allow creating device with oversized configuration name.
+- 3.1.163
+
+---
+Tue Aug  9 12:29:35 UTC 2016 - sch...@suse.de
+
+- Added entry "s390-devices" to the AutoYaST schema file.
+  Bug similar bnc#954412.
+- 3.1.162
+
+---
+Tue Aug  9 12:25:01 UTC 2016 - mfi...@suse.com
+
+- bnc#991920
+  - do not crash with internal error when renaming unconfigured
+device
+- 3.1.161 
+
+---
+Tue Aug  2 12:40:53 UTC 2016 - mfi...@suse.com
+
+- bnc#991382
+  - Do not crash with internal error when using "On Cable
+Connection" device activation mode.
+- 3.1.160
+
+---
 Tue Jul 12 10:41:58 CEST 2016 - sch...@suse.de
 
 - Added entry "dhclient_set_hostname" to the AutoYaST schema file.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.159/package/yast2-network.spec 
new/yast2-network-3.1.163/package/yast2-network.spec
--- old/yast2-network-3.1.159/package/yast2-network.spec2016-07-15 
10:26:35.0 +0200
+++ new/yast2-network-3.1.163/package/yast2-network.spec2016-08-09 
18:43:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.159
+Version:3.1.163
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.159/src/autoyast-rnc/networking.rnc 
new/yast2-network-3.1.163/src/autoyast-rnc/networking.rnc
--- old/yast2-network-3.1.159/src/autoyast-rnc/networking.rnc   2016-07-15 
10:26:35.0 +0200
+++ new/yast2-network-3.1.163/src/autoyast-rnc/networking.rnc   2016-08-09 
18:43:38.0 +0200
@@ -15,6 +15,7 @@
 dhcp_options? &
 routing? &
 dns? &
+s390-devices? &
 net-udev?
   }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.159/src/include/network/lan/hardware.rb 

commit yast2-network for openSUSE:Factory

2016-07-16 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-07-16 22:12:32

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-06-29 15:04:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-07-16 22:12:35.0 +0200
@@ -1,0 +2,7 @@
+Tue Jul 12 10:41:58 CEST 2016 - sch...@suse.de
+
+- Added entry "dhclient_set_hostname" to the AutoYaST schema file.
+  Bug similar bnc#954412.
+- 3.1.159
+
+---

Old:

  yast2-network-3.1.158.tar.bz2

New:

  yast2-network-3.1.159.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.VRqNss/_old  2016-07-16 22:12:36.0 +0200
+++ /var/tmp/diff_new_pack.VRqNss/_new  2016-07-16 22:12:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.158
+Version:3.1.159
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.158.tar.bz2 -> yast2-network-3.1.159.tar.bz2 ++
 2668 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2016-06-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-06-13 21:49:49

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-06-02 12:49:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-06-13 21:49:51.0 +0200
@@ -1,0 +2,14 @@
+Wed Jun  1 14:16:08 UTC 2016 - igonzalezs...@suse.com
+
+- Drop yast2-network-devel-doc package (fate#320356)
+- 3.1.154
+
+---
+Tue May 31 11:31:22 UTC 2016 - mfi...@suse.com
+
+- bnc#981842
+  - enable / disable vncmanager only when installed to avoid
+failures in systemd calls
+- 3.1.153
+
+---

Old:

  yast2-network-3.1.152.tar.bz2

New:

  yast2-network-3.1.154.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.mfCJsg/_old  2016-06-13 21:49:52.0 +0200
+++ /var/tmp/diff_new_pack.mfCJsg/_new  2016-06-13 21:49:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.152
+Version:3.1.154
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,20 +62,15 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
+Obsoletes:  yast2-network-devel-doc
+
 Summary:YaST2 - Network Configuration
 License:GPL-2.0
 Group:  System/YaST
 
-%package devel-doc
-Summary:YaST2 - Developer documentation for yast2-network
-Group:  System/YaST
-
 %description 
 This package contains the YaST2 component for network configuration.
 
-%description devel-doc
-This package contains autogenerated documentation for yast2-network
-
 %prep
 %setup -n %{name}-%{version}
 
@@ -101,12 +96,8 @@
 %{yast_ydatadir}/network
 
 %dir %{yast_docdir}
-%{yast_docdir}/COPYING
-
-%files devel-doc
-%defattr(-,root,root)
-%doc %{yast_docdir}
-%exclude %{yast_docdir}/COPYING
-%exclude %{yast_docdir}/README
+%doc %{yast_docdir}/CONTRIBUTING.md
+%doc %{yast_docdir}/COPYING
+%doc %{yast_docdir}/README.md
 
 %changelog

++ yast2-network-3.1.152.tar.bz2 -> yast2-network-3.1.154.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.152/doc/autodocs/Makefile.am 
new/yast2-network-3.1.154/doc/autodocs/Makefile.am
--- old/yast2-network-3.1.152/doc/autodocs/Makefile.am  2016-05-25 
13:12:59.0 +0200
+++ new/yast2-network-3.1.154/doc/autodocs/Makefile.am  1970-01-01 
01:00:00.0 +0100
@@ -1,3 +0,0 @@
-# Makefile.am for YCP module .../doc/autodocs
-
-include $(top_srcdir)/autodocs-ycp.ami
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.152/package/yast2-network.changes 
new/yast2-network-3.1.154/package/yast2-network.changes
--- old/yast2-network-3.1.152/package/yast2-network.changes 2016-05-25 
13:12:59.0 +0200
+++ new/yast2-network-3.1.154/package/yast2-network.changes 2016-06-09 
15:23:31.0 +0200
@@ -1,4 +1,18 @@
 ---
+Wed Jun  1 14:16:08 UTC 2016 - igonzalezs...@suse.com
+
+- Drop yast2-network-devel-doc package (fate#320356)
+- 3.1.154
+
+---
+Tue May 31 11:31:22 UTC 2016 - mfi...@suse.com
+
+- bnc#981842
+  - enable / disable vncmanager only when installed to avoid
+failures in systemd calls
+- 3.1.153
+
+---
 Thu May 19 21:53:16 UTC 2016 - mfi...@suse.com
 
 - fate#319319
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.152/package/yast2-network.spec 
new/yast2-network-3.1.154/package/yast2-network.spec
--- old/yast2-network-3.1.152/package/yast2-network.spec2016-05-25 
13:12:59.0 +0200
+++ new/yast2-network-3.1.154/package/yast2-network.spec2016-06-09 
15:23:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.152
+Version:3.1.154
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,18 +62,13 @@
 
 Requires:   yast2-ruby-bindings >= 1.0.0
 
-Summary:YaST2 - Network Configuration
+Obsoletes:  yast2-network-devel-doc
 
-%package devel-doc
-Group:  System/YaST
-Summary:YaST2 - Developer documentation for yast2-network
+Summary:YaST2 - Network 

commit yast2-network for openSUSE:Factory

2016-06-02 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-06-02 12:49:07

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-05-23 16:36:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-06-02 12:49:09.0 +0200
@@ -1,0 +2,8 @@
+Thu May 19 21:53:16 UTC 2016 - mfi...@suse.com
+
+- fate#319319
+  - implemented support for vncmanager in Remote module. Thanks to
+m...@suse.cz.
+- 3.1.152
+
+---

Old:

  yast2-network-3.1.151.tar.bz2

New:

  yast2-network-3.1.152.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.zomhBT/_old  2016-06-02 12:49:10.0 +0200
+++ /var/tmp/diff_new_pack.zomhBT/_new  2016-06-02 12:49:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.151
+Version:3.1.152
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.151.tar.bz2 -> yast2-network-3.1.152.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.151/package/yast2-network.changes 
new/yast2-network-3.1.152/package/yast2-network.changes
--- old/yast2-network-3.1.151/package/yast2-network.changes 2016-05-17 
18:24:00.0 +0200
+++ new/yast2-network-3.1.152/package/yast2-network.changes 2016-05-25 
13:12:59.0 +0200
@@ -1,4 +1,12 @@
 ---
+Thu May 19 21:53:16 UTC 2016 - mfi...@suse.com
+
+- fate#319319
+  - implemented support for vncmanager in Remote module. Thanks to
+m...@suse.cz.
+- 3.1.152
+
+---
 Tue May 17 16:04:49 UTC 2016 - mfi...@suse.com
 
 - bnc#971175
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.151/package/yast2-network.spec 
new/yast2-network-3.1.152/package/yast2-network.spec
--- old/yast2-network-3.1.151/package/yast2-network.spec2016-05-17 
18:24:00.0 +0200
+++ new/yast2-network-3.1.152/package/yast2-network.spec2016-05-25 
13:12:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.151
+Version:3.1.152
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.151/src/include/network/remote/dialogs.rb 
new/yast2-network-3.1.152/src/include/network/remote/dialogs.rb
--- old/yast2-network-3.1.151/src/include/network/remote/dialogs.rb 
2016-05-17 18:24:00.0 +0200
+++ new/yast2-network-3.1.152/src/include/network/remote/dialogs.rb 
2016-05-25 13:12:59.0 +0200
@@ -60,9 +60,17 @@
   # RadioButton label
   Left(
 RadioButton(
-  Id(:allow),
-  _(" Remote Administration"),
-  Remote.IsEnabled
+  Id(:allow_with_vncmanager),
+  _(" Remote Administration With Session Management"),
+  Remote.IsEnabled && Remote.EnabledVncManager
+)
+  ),
+  # RadioButton label
+  Left(
+RadioButton(
+  Id(:allow_without_vncmanager),
+  _(" Remote Administration Without Session Management"),
+  Remote.IsEnabled && !Remote.EnabledVncManager
 )
   ),
   # RadioButton label
@@ -91,8 +99,12 @@
   "If this feature is enabled, you can\n" \
   "administer this machine remotely from another machine. Use a 
VNC\n" \
   "client, such as krdc (connect to hostname:%1), 
or\n" \
-  "a Java-capable Web browser (connect to 
http://hostname:%2/).\n" \
-  "This form of remote administration is less secure than using 
SSH.\n"
+  "a Java-capable Web browser (connect to 
https://hostname:%2/).\n" \
+  "Without Session Management, only one user can be 
connected\n"\
+  "at a time to a session, and that session is terminated when the 
VNC client\n" \
+  "disconnects." \
+  "With Session Management, multiple users can interact with a 
single\n" \
+  "session, and the session may persist even if noone is 
connected."
   ),
   5901,
   5801
@@ -142,9 +154,12 

commit yast2-network for openSUSE:Factory

2016-05-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-05-23 16:36:09

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-05-10 09:24:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-05-23 16:36:10.0 +0200
@@ -1,0 +2,22 @@
+Tue May 17 16:04:49 UTC 2016 - mfi...@suse.com
+
+- bnc#971175
+  - /etc/hosts is correctly updated with static address, hostname
+when static net configuration is done via linuxrc and hostname
+is provided by AY profile
+- 3.1.151
+
+---
+Fri May 13 10:19:39 UTC 2016 - knut.anders...@suse.com
+
+- fate#315995
+  - Added physical port id to device overview and bond slaves item
+description if supported.
+  - Warn the user when two or more bonded interfaces share the
+same physical port.
+  - Available interfaces for bonding in bond slaves tab are now
+sorted and moving them up or down maintain the interface
+selected.
+- 3.1.150
+
+---

Old:

  yast2-network-3.1.149.tar.bz2

New:

  yast2-network-3.1.151.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.imYbXS/_old  2016-05-23 16:36:11.0 +0200
+++ /var/tmp/diff_new_pack.imYbXS/_new  2016-05-23 16:36:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.149
+Version:3.1.151
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.149.tar.bz2 -> yast2-network-3.1.151.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.149/package/yast2-network.changes 
new/yast2-network-3.1.151/package/yast2-network.changes
--- old/yast2-network-3.1.149/package/yast2-network.changes 2016-05-04 
21:43:30.0 +0200
+++ new/yast2-network-3.1.151/package/yast2-network.changes 2016-05-17 
18:24:00.0 +0200
@@ -1,4 +1,26 @@
 ---
+Tue May 17 16:04:49 UTC 2016 - mfi...@suse.com
+
+- bnc#971175
+  - /etc/hosts is correctly updated with static address, hostname
+when static net configuration is done via linuxrc and hostname
+is provided by AY profile
+- 3.1.151
+
+---
+Fri May 13 10:19:39 UTC 2016 - knut.anders...@suse.com
+
+- fate#315995
+  - Added physical port id to device overview and bond slaves item
+description if supported.
+  - Warn the user when two or more bonded interfaces share the
+same physical port.
+  - Available interfaces for bonding in bond slaves tab are now
+sorted and moving them up or down maintain the interface
+selected.
+- 3.1.150
+
+---
 Mon May  2 11:35:45 UTC 2016 - mfi...@suse.com
 
 - bnc#977953
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.149/package/yast2-network.spec 
new/yast2-network-3.1.151/package/yast2-network.spec
--- old/yast2-network-3.1.149/package/yast2-network.spec2016-05-04 
21:43:30.0 +0200
+++ new/yast2-network-3.1.151/package/yast2-network.spec2016-05-17 
18:24:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.149
+Version:3.1.151
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.149/src/clients/save_network.rb 
new/yast2-network-3.1.151/src/clients/save_network.rb
--- old/yast2-network-3.1.149/src/clients/save_network.rb   2016-05-04 
21:43:31.0 +0200
+++ new/yast2-network-3.1.151/src/clients/save_network.rb   2016-05-17 
18:24:00.0 +0200
@@ -36,8 +36,6 @@
 include Logger
 
 def main
-  Yast.import "UI"
-
   textdomain "network"
 
   Yast.import "DNS"
@@ -86,6 +84,8 @@
 SYSCONFIG = "/etc/sysconfig/network/"
 
 def CopyConfiguredNetworkFiles
+  return if Mode.autoinst && !NetworkAutoYast.instance.keep_net_config?
+
   log.info(
 "Copy network configuration files from 1st stage into installed system"
   )
@@ -247,15 +247,28 @@
   nil
 end
 
+# Creates target's default DNS configuration
+#
+# It uses DNS configuration 

commit yast2-network for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-05-10 09:24:56

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-04-28 20:29:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-05-10 09:24:57.0 +0200
@@ -1,0 +2,9 @@
+Mon May  2 11:35:45 UTC 2016 - mfi...@suse.com
+
+- bnc#977953
+  - added dependency on yast2-proxy. "yast2 lan" won't fail with
+internal error (missing Proxy module), when yast2-network is
+installed into a minimal server installation.
+- 3.1.149
+
+---

Old:

  yast2-network-3.1.148.tar.bz2

New:

  yast2-network-3.1.149.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.wuOwDG/_old  2016-05-10 09:24:58.0 +0200
+++ /var/tmp/diff_new_pack.wuOwDG/_new  2016-05-10 09:24:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.148
+Version:3.1.149
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,6 +31,7 @@
 BuildRequires:  yast2-country
 BuildRequires:  yast2-devtools >= 3.1.15
 BuildRequires:  yast2-proxy
+Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
 

++ yast2-network-3.1.148.tar.bz2 -> yast2-network-3.1.149.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.148/package/yast2-network.changes 
new/yast2-network-3.1.149/package/yast2-network.changes
--- old/yast2-network-3.1.148/package/yast2-network.changes 2016-04-19 
10:56:06.0 +0200
+++ new/yast2-network-3.1.149/package/yast2-network.changes 2016-05-04 
21:43:30.0 +0200
@@ -1,4 +1,13 @@
 ---
+Mon May  2 11:35:45 UTC 2016 - mfi...@suse.com
+
+- bnc#977953
+  - added dependency on yast2-proxy. "yast2 lan" won't fail with
+internal error (missing Proxy module), when yast2-network is
+installed into a minimal server installation.
+- 3.1.149
+
+---
 Tue Apr 19 08:01:16 UTC 2016 - mfi...@suse.com
 
 - bnc#966694
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.148/package/yast2-network.spec 
new/yast2-network-3.1.149/package/yast2-network.spec
--- old/yast2-network-3.1.148/package/yast2-network.spec2016-04-19 
10:56:06.0 +0200
+++ new/yast2-network-3.1.149/package/yast2-network.spec2016-05-04 
21:43:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.148
+Version:3.1.149
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,6 +31,7 @@
 BuildRequires:  yast2-devtools >= 3.1.15
 BuildRequires:  yast2-country
 BuildRequires:  yast2-proxy
+Requires:   yast2-proxy
 #for install task
 BuildRequires:  rubygem(yast-rake)
 




commit yast2-network for openSUSE:Factory

2016-04-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-04-28 20:29:52

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-03-11 12:29:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-04-28 20:29:53.0 +0200
@@ -1,0 +2,32 @@
+Tue Apr 19 08:01:16 UTC 2016 - mfi...@suse.com
+
+- bnc#966694
+  - TigerVNC Viewer Error: No matching security types. Do not touch
+VNC arguments when enabling or disabling it. Thanks to 
+m...@suse.com for the patch.
+- 3.1.148
+
+---
+Tue Apr 12 08:04:07 UTC 2016 - mfi...@suse.com
+
+- bnc#974910
+  - fixed internal error when no "interfaces" group is found in an
+AY profile
+- 3.1.147 
+
+---
+Mon Apr 11 09:42:20 UTC 2016 - mfi...@suse.com
+
+- bnc#955217, bnc#956605
+  - fixed internal error caused by the previous patch
+- 3.1.146
+
+---
+Mon Apr  4 17:24:13 UTC 2016 - mfi...@suse.com
+
+- bnc#955217, bnc#956605
+  - unified udev rule handling by always doing it in the 1st stage
+of installation.
+- 3.1.145
+
+---

Old:

  yast2-network-3.1.144.tar.bz2

New:

  yast2-network-3.1.148.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.V9eTdZ/_old  2016-04-28 20:29:54.0 +0200
+++ /var/tmp/diff_new_pack.V9eTdZ/_new  2016-04-28 20:29:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.144
+Version:3.1.148
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.144.tar.bz2 -> yast2-network-3.1.148.tar.bz2 ++
 1955 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2016-03-11 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-03-11 12:29:29

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-02-25 21:44:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-03-11 12:29:31.0 +0100
@@ -1,0 +2,8 @@
+Sun Mar  6 21:15:08 UTC 2016 - mfi...@suse.com
+
+- bnc#920089
+  - fix by Damir Porobic
+  - fixed layout of dialog for new route definition
+- 3.1.144 
+
+---

Old:

  yast2-network-3.1.143.tar.bz2

New:

  yast2-network-3.1.144.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Xk4z0d/_old  2016-03-11 12:29:31.0 +0100
+++ /var/tmp/diff_new_pack.Xk4z0d/_new  2016-03-11 12:29:31.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.143
+Version:3.1.144
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.143.tar.bz2 -> yast2-network-3.1.144.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.143/package/yast2-network.changes 
new/yast2-network-3.1.144/package/yast2-network.changes
--- old/yast2-network-3.1.143/package/yast2-network.changes 2016-02-23 
09:47:14.0 +0100
+++ new/yast2-network-3.1.144/package/yast2-network.changes 2016-03-08 
14:54:08.0 +0100
@@ -1,4 +1,12 @@
 ---
+Sun Mar  6 21:15:08 UTC 2016 - mfi...@suse.com
+
+- bnc#920089
+  - fix by Damir Porobic
+  - fixed layout of dialog for new route definition
+- 3.1.144 
+
+---
 Mon Feb 22 11:52:09 UTC 2016 - mfi...@suse.com
 
 - bnc#960703
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.143/package/yast2-network.spec 
new/yast2-network-3.1.144/package/yast2-network.spec
--- old/yast2-network-3.1.143/package/yast2-network.spec2016-02-23 
09:47:14.0 +0100
+++ new/yast2-network-3.1.144/package/yast2-network.spec2016-03-08 
14:54:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.143
+Version:3.1.144
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.143/src/clients/firewall_stage1_proposal.rb 
new/yast2-network-3.1.144/src/clients/firewall_stage1_proposal.rb
--- old/yast2-network-3.1.143/src/clients/firewall_stage1_proposal.rb   
2016-02-23 09:47:14.0 +0100
+++ new/yast2-network-3.1.144/src/clients/firewall_stage1_proposal.rb   
2016-03-08 14:54:08.0 +0100
@@ -277,7 +277,7 @@
   Convert.to_symbol(dialog_ret)
 end
 
-private
+  private
 
 def preformatted_proposal
   firewall_proposal = if SuSEFirewall4Network.Enabled1stStage
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.143/src/include/network/lan/complex.rb 
new/yast2-network-3.1.144/src/include/network/lan/complex.rb
--- old/yast2-network-3.1.143/src/include/network/lan/complex.rb
2016-02-23 09:47:14.0 +0100
+++ new/yast2-network-3.1.144/src/include/network/lan/complex.rb
2016-03-08 14:54:08.0 +0100
@@ -567,7 +567,7 @@
   ret
 end
 
-private
+  private
 
 def overview_buttons
   ret = {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.143/src/include/network/routines.rb 
new/yast2-network-3.1.144/src/include/network/routines.rb
--- old/yast2-network-3.1.143/src/include/network/routines.rb   2016-02-23 
09:47:14.0 +0100
+++ new/yast2-network-3.1.144/src/include/network/routines.rb   2016-03-08 
14:54:08.0 +0100
@@ -815,7 +815,7 @@
   true
 end
 
-private
+  private
 
 # Checks if the device should be filtered out in ReadHardware
 def filter_out(device_info, driver)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.143/src/include/network/services/routing.rb 
new/yast2-network-3.1.144/src/include/network/services/routing.rb
--- old/yast2-network-3.1.143/src/include/network/services/routing.rb   
2016-02-23 09:47:14.0 +0100

commit yast2-network for openSUSE:Factory

2016-02-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-02-25 21:44:03

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-02-07 09:21:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-02-25 21:44:08.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 22 11:52:09 UTC 2016 - mfi...@suse.com
+
+- bnc#960703
+  - sometimes wicked was started instead of NetworkManager in case
+of AY installation. Moreover it could happen that both services
+were "half-started" and network setup got broken.
+- bsc#903190
+  - Recognized netcard with sub_class_id 07 as InfiniBand (ib) which
+now are not filtered out (knut.anders...@suse.com).
+- 3.1.143
+
+---

Old:

  yast2-network-3.1.142.tar.bz2

New:

  yast2-network-3.1.143.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.GLc6po/_old  2016-02-25 21:44:09.0 +0100
+++ /var/tmp/diff_new_pack.GLc6po/_new  2016-02-25 21:44:09.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.142
+Version:3.1.143
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.142.tar.bz2 -> yast2-network-3.1.143.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.142/package/yast2-network.changes 
new/yast2-network-3.1.143/package/yast2-network.changes
--- old/yast2-network-3.1.142/package/yast2-network.changes 2016-02-02 
00:22:12.0 +0100
+++ new/yast2-network-3.1.143/package/yast2-network.changes 2016-02-23 
09:47:14.0 +0100
@@ -1,4 +1,16 @@
 ---
+Mon Feb 22 11:52:09 UTC 2016 - mfi...@suse.com
+
+- bnc#960703
+  - sometimes wicked was started instead of NetworkManager in case
+of AY installation. Moreover it could happen that both services
+were "half-started" and network setup got broken.
+- bsc#903190
+  - Recognized netcard with sub_class_id 07 as InfiniBand (ib) which
+now are not filtered out (knut.anders...@suse.com).
+- 3.1.143
+
+---
 Fri Jan 29 15:21:36 UTC 2016 - knut.anders...@suse.com
 
 - Removed old testsuites tests and autotools, so yast2-testsuite
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.142/package/yast2-network.spec 
new/yast2-network-3.1.143/package/yast2-network.spec
--- old/yast2-network-3.1.142/package/yast2-network.spec2016-02-02 
00:22:12.0 +0100
+++ new/yast2-network-3.1.143/package/yast2-network.spec2016-02-23 
09:47:14.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.142
+Version:3.1.143
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.142/src/clients/save_network.rb 
new/yast2-network-3.1.143/src/clients/save_network.rb
--- old/yast2-network-3.1.142/src/clients/save_network.rb   2016-02-02 
00:22:12.0 +0100
+++ new/yast2-network-3.1.143/src/clients/save_network.rb   2016-02-23 
09:47:14.0 +0100
@@ -30,6 +30,7 @@
 module Yast
   require "network/install_inf_convertor"
   require "network/network_autoconfiguration"
+  require "network/network_autoyast"
 
   class SaveNetworkClient < Client
 include Logger
@@ -47,9 +48,6 @@
   Yast.import "Mode"
   Yast.import "Arch"
   Yast.import "Storage"
-  Yast.import "LanItems"
-  Yast.import "Profile"
-  Yast.import "Linuxrc"
 
   Yast.include self, "network/routines.rb"
   Yast.include self, "network/complex.rb"
@@ -214,7 +212,11 @@
   new_SCR = WFM.SCROpen("chroot=/:scr", false)
   WFM.SCRSetDefault(new_SCR)
 
-  ay_mode_configuration if Mode.autoinst
+  # this has to be done here (out of chroot) bcs:
+  # 1) udev agent doesn't support SetRoot
+  # 2) original ifcfg file is copied otherwise too. It doesn't break 
things itself
+  # but definitely not looking well ;-)
+  NetworkAutoYast.instance.create_udevs if Mode.autoinst
 
   # Copy DHCP client cache so that we can request the same IP (#43974).
   WFM.Execute(
@@ -255,6 +257,8 @@
 
   DNS.create_hostname_link
 
+  

commit yast2-network for openSUSE:Factory

2016-02-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-02-07 09:21:19

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-01-05 09:39:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-02-07 09:21:20.0 +0100
@@ -1,0 +2,14 @@
+Fri Jan 29 15:21:36 UTC 2016 - knut.anders...@suse.com
+
+- Removed old testsuites tests and autotools, so yast2-testsuite
+  is not required anymore (fate#314695).
+- 3.1.142
+
+---
+Fri Jan 22 13:24:15 UTC 2016 - mvid...@suse.com
+
+- Fixed an Internal error when aborting the configuration of a
+  WiFi interface (bsc#950902).
+- 3.1.141
+
+---

Old:

  yast2-network-3.1.140.tar.bz2

New:

  yast2-network-3.1.142.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.xczOtb/_old  2016-02-07 09:21:21.0 +0100
+++ /var/tmp/diff_new_pack.xczOtb/_new  2016-02-07 09:21:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-network
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.140
+Version:3.1.142
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -31,7 +31,8 @@
 BuildRequires:  yast2-country
 BuildRequires:  yast2-devtools >= 3.1.15
 BuildRequires:  yast2-proxy
-BuildRequires:  yast2-testsuite
+#for install task
+BuildRequires:  rubygem(yast-rake)
 
 # yast2 v3.1.86: Added ServicesProposal library
 BuildRequires:  yast2 >= 3.1.86
@@ -77,11 +78,11 @@
 %prep
 %setup -n %{name}-%{version}
 
-%build
-%yast_build
+%check
+rake test:unit
 
 %install
-%yast_install
+rake install DESTDIR="%{buildroot}"
 
 %files
 %defattr(-,root,root)

++ yast2-network-3.1.140.tar.bz2 -> yast2-network-3.1.142.tar.bz2 ++
 2378 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2016-01-05 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-01-05 09:39:17

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-10-20 16:22:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-01-05 09:39:40.0 +0100
@@ -1,0 +2,59 @@
+Wed Dec  2 13:26:12 UTC 2015 - mfi...@suse.com
+
+- bnc#957377
+  - When exporting AutoYaST profile, it contains dns configuration
+even when this config was provided via linuxrc.
+- 3.1.140
+
+---
+Mon Nov 30 09:05:24 UTC 2015 - mfi...@suse.com
+
+- bnc#951330
+  - drop record from /etc/hosts when deleting nic configuration
+- bsc#954412 (igonzalezs...@suse.com)
+  - Fix validation of AutoYaST profiles
+- 3.1.139
+
+---
+Wed Nov 25 21:01:49 UTC 2015 - mfi...@suse.com
+
+- bnc#956605
+  - Write udev rules for renamed devices for non ssh / vnc AutoYaST
+installations
+- 3.1.138
+
+---
+Mon Nov 23 09:54:34 UTC 2015 - mfi...@suse.com
+
+- bnc#956012
+  - When exporting AutoYaST profile, it contains route definitions
+even when these routes were configured using linuxrc.
+- 3.1.137
+
+---
+Mon Nov 16 21:33:18 UTC 2015 - mfi...@suse.com
+
+- bnc#955217
+  - do not raise internal error during AY installation with profile
+containing  device renaming rule for unconfigured interface
+- 3.1.136
+
+---
+Mon Nov 16 05:52:07 UTC 2015 - mfi...@suse.com
+
+- bnc#944349
+  - do not set links down when running AY installation over vnc.
+VNC installation do not freeze.
+  - renaming network devices during ssh/vnc installation is
+supported
+-3.1.135
+
+---
+Sun Nov  8 20:55:53 UTC 2015 - mfi...@suse.com
+
+- bnc#944349
+  - do not set links down when running AY installation over ssh.
+SSH installation do not freeze.
+- 3.1.134
+
+---

Old:

  yast2-network-3.1.133.tar.bz2

New:

  yast2-network-3.1.140.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.eskwP8/_old  2016-01-05 09:39:42.0 +0100
+++ /var/tmp/diff_new_pack.eskwP8/_new  2016-01-05 09:39:42.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.133
+Version:3.1.140
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.133.tar.bz2 -> yast2-network-3.1.140.tar.bz2 ++
 2636 lines of diff (skipped)




commit yast2-network for openSUSE:Factory

2015-10-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-10-20 16:22:18

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-10-03 20:29:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-10-20 16:22:20.0 +0200
@@ -1,0 +2,15 @@
+Thu Oct  8 12:02:44 UTC 2015 - mvid...@suse.com
+
+- Fixed "Relax-NG parser error : Some defines for ipv6_forward
+  needs the combine attribute" when checking validity
+  of any AutoYaST profile (bsc#948206).
+- 3.1.133
+
+---
+Tue Oct  6 16:44:44 UTC 2015 - mfi...@suse.com
+
+- bnc#900647
+  - fixed to accept an empty domain in /etc/hostname
+- 3.1.132
+
+---

Old:

  yast2-network-3.1.131.tar.bz2

New:

  yast2-network-3.1.133.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.QZrA7i/_old  2015-10-20 16:22:21.0 +0200
+++ /var/tmp/diff_new_pack.QZrA7i/_new  2015-10-20 16:22:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.131
+Version:3.1.133
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -96,6 +96,7 @@
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
+%{yast_ydatadir}/network
 
 %dir %{yast_docdir}
 %{yast_docdir}/COPYING

++ yast2-network-3.1.131.tar.bz2 -> yast2-network-3.1.133.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.131/package/yast2-network.changes 
new/yast2-network-3.1.133/package/yast2-network.changes
--- old/yast2-network-3.1.131/package/yast2-network.changes 2015-10-01 
13:42:17.0 +0200
+++ new/yast2-network-3.1.133/package/yast2-network.changes 2015-10-19 
19:17:09.0 +0200
@@ -1,4 +1,19 @@
 ---
+Thu Oct  8 12:02:44 UTC 2015 - mvid...@suse.com
+
+- Fixed "Relax-NG parser error : Some defines for ipv6_forward
+  needs the combine attribute" when checking validity
+  of any AutoYaST profile (bsc#948206).
+- 3.1.133
+
+---
+Tue Oct  6 16:44:44 UTC 2015 - mfi...@suse.com
+
+- bnc#900647
+  - fixed to accept an empty domain in /etc/hostname
+- 3.1.132
+
+---
 Thu Oct  1 07:26:55 UTC 2015 - mvid...@suse.com
 
 - Moved "Network Settings" into "System" group also in the Gnome/GTK
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.131/package/yast2-network.spec 
new/yast2-network-3.1.133/package/yast2-network.spec
--- old/yast2-network-3.1.131/package/yast2-network.spec2015-10-01 
13:42:17.0 +0200
+++ new/yast2-network-3.1.133/package/yast2-network.spec2015-10-19 
19:17:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.131
+Version:3.1.133
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -94,6 +94,7 @@
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
 %{yast_libdir}/network
+%{yast_ydatadir}/network
 
 %dir %{yast_docdir}
 %{yast_docdir}/COPYING
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.131/src/Makefile.am 
new/yast2-network-3.1.133/src/Makefile.am
--- old/yast2-network-3.1.131/src/Makefile.am   2015-10-01 13:42:17.0 
+0200
+++ new/yast2-network-3.1.133/src/Makefile.am   2015-10-19 19:17:09.0 
+0200
@@ -111,6 +111,12 @@
   lib/network/network_autoconfiguration.rb \
   lib/network/network_autoyast.rb
 
+ydatadir = @ydatadir@/network
+ydata_DATA = \
+  data/network/sysconfig_defaults.yml \
+  data/network/s390_defaults.yml \
+  data/network/firmwares.yml
+
 EXTRA_DIST = \
   $(module_DATA) \
   $(module1_DATA) \
@@ -125,6 +131,7 @@
   $(schemafiles_DATA) \
   $(ybin_SCRIPTS) \
   $(desktop_DATA) \
-  $(ylib_DATA)
+  $(ylib_DATA) \
+  $(ydata_DATA)
 
 include $(top_srcdir)/Makefile.am.common
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.131/src/autoyast-rnc/networking.rnc 
new/yast2-network-3.1.133/src/autoyast-rnc/networking.rnc
--- 

commit yast2-network for openSUSE:Factory

2015-10-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-10-03 20:28:16

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-09-24 07:15:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-10-03 20:29:18.0 +0200
@@ -1,0 +2,15 @@
+Thu Oct  1 07:26:55 UTC 2015 - mvid...@suse.com
+
+- Moved "Network Settings" into "System" group also in the Gnome/GTK
+  control center (FATE#318804, bsc#867809).
+- 3.1.131
+
+---
+Wed Sep 23 09:06:08 UTC 2015 - mfi...@suse.com
+
+- bnc#866742
+  - Do not fail with internal error when cloning configuration
+twice in a row
+- 3.1.130
+
+---

Old:

  yast2-network-3.1.129.tar.bz2

New:

  yast2-network-3.1.131.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.qYBvIe/_old  2015-10-03 20:29:20.0 +0200
+++ /var/tmp/diff_new_pack.qYBvIe/_new  2015-10-03 20:29:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.129
+Version:3.1.131
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.129.tar.bz2 -> yast2-network-3.1.131.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.129/package/yast2-network.changes 
new/yast2-network-3.1.131/package/yast2-network.changes
--- old/yast2-network-3.1.129/package/yast2-network.changes 2015-09-16 
13:17:10.0 +0200
+++ new/yast2-network-3.1.131/package/yast2-network.changes 2015-10-01 
13:42:17.0 +0200
@@ -1,4 +1,19 @@
 ---
+Thu Oct  1 07:26:55 UTC 2015 - mvid...@suse.com
+
+- Moved "Network Settings" into "System" group also in the Gnome/GTK
+  control center (FATE#318804, bsc#867809).
+- 3.1.131
+
+---
+Wed Sep 23 09:06:08 UTC 2015 - mfi...@suse.com
+
+- bnc#866742
+  - Do not fail with internal error when cloning configuration
+twice in a row
+- 3.1.130
+
+---
 Wed Sep 16 09:06:48 UTC 2015 - mfi...@suse.com
 
 - bnc#945947
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.129/package/yast2-network.spec 
new/yast2-network-3.1.131/package/yast2-network.spec
--- old/yast2-network-3.1.129/package/yast2-network.spec2015-09-16 
13:17:10.0 +0200
+++ new/yast2-network-3.1.131/package/yast2-network.spec2015-10-01 
13:42:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.129
+Version:3.1.131
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.129/src/clients/lan_auto.rb 
new/yast2-network-3.1.131/src/clients/lan_auto.rb
--- old/yast2-network-3.1.129/src/clients/lan_auto.rb   2015-09-16 
13:17:10.0 +0200
+++ new/yast2-network-3.1.131/src/clients/lan_auto.rb   2015-10-01 
13:42:17.0 +0200
@@ -84,7 +84,6 @@
 @ret = Ops.get_string(Lan.Summary("summary"), 0, "")
   elsif @func == "Reset"
 Lan.Import({})
-LanItems.UnsetModified
 @ret = {}
   elsif @func == "Change"
 @ret = LanAutoSequence("")
@@ -101,7 +100,7 @@
 @ret = true
   elsif @func == "Read"
 @progress_orig = Progress.set(false)
-@ret = Lan.Read(:cache)
+@ret = Lan.Read(:nocache)
 Progress.set(@progress_orig)
   elsif @func == "Packages"
 @ret = Lan.AutoPackages
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.129/src/desktop/lan.desktop 
new/yast2-network-3.1.131/src/desktop/lan.desktop
--- old/yast2-network-3.1.129/src/desktop/lan.desktop   2015-09-16 
13:17:10.0 +0200
+++ new/yast2-network-3.1.131/src/desktop/lan.desktop   2015-10-01 
13:42:17.0 +0200
@@ -1,6 +1,6 @@
 [Desktop Entry]
 Type=Application
-Categories=Settings;System;Qt;X-SuSE-YaST;X-SuSE-YaST-Network;
+Categories=Settings;System;Qt;X-SuSE-YaST;X-SuSE-YaST-System;
 
 X-KDE-ModuleType=Library
 X-KDE-HasReadOnlyMode=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit yast2-network for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-09-24 07:15:47

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-08-29 20:02:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-09-24 07:15:48.0 +0200
@@ -1,0 +2,8 @@
+Wed Sep 16 09:06:48 UTC 2015 - mfi...@suse.com
+
+- bnc#945947
+  - Routing module returns correct return code when invoked from
+command line
+- 3.1.129
+
+---

Old:

  yast2-network-3.1.128.tar.bz2

New:

  yast2-network-3.1.129.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.1LY1XW/_old  2015-09-24 07:15:49.0 +0200
+++ /var/tmp/diff_new_pack.1LY1XW/_new  2015-09-24 07:15:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.128
+Version:3.1.129
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.128.tar.bz2 -> yast2-network-3.1.129.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.128/package/yast2-network.changes 
new/yast2-network-3.1.129/package/yast2-network.changes
--- old/yast2-network-3.1.128/package/yast2-network.changes 2015-08-28 
09:02:14.0 +0200
+++ new/yast2-network-3.1.129/package/yast2-network.changes 2015-09-16 
13:17:10.0 +0200
@@ -1,4 +1,12 @@
 ---
+Wed Sep 16 09:06:48 UTC 2015 - mfi...@suse.com
+
+- bnc#945947
+  - Routing module returns correct return code when invoked from
+command line
+- 3.1.129
+
+---
 Thu Aug 27 20:29:41 UTC 2015 - mfi...@suse.com
 
 - bnc#846201
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.128/package/yast2-network.spec 
new/yast2-network-3.1.129/package/yast2-network.spec
--- old/yast2-network-3.1.128/package/yast2-network.spec2015-08-28 
09:02:14.0 +0200
+++ new/yast2-network-3.1.129/package/yast2-network.spec2015-09-16 
13:17:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.128
+Version:3.1.129
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.128/src/modules/Routing.rb 
new/yast2-network-3.1.129/src/modules/Routing.rb
--- old/yast2-network-3.1.128/src/modules/Routing.rb2015-08-28 
09:02:14.0 +0200
+++ new/yast2-network-3.1.129/src/modules/Routing.rb2015-09-16 
13:17:10.0 +0200
@@ -72,6 +72,7 @@
   Yast.import "Map"
   Yast.import "Mode"
   Yast.import "SuSEFirewall"
+  Yast.import "FileUtils"
 
   Yast.include self, "network/runtime.rb"
   Yast.include self, "network/routines.rb"
@@ -287,6 +288,24 @@
   ret
 end
 
+# Clear file with routes definitions for particular device
+#
+# @param device is a device name (eth0) or special string 
Routes::ANY_DEVICE
+# @return [true, false] if succeedes
+def clear_route_file(device)
+  # work around bnc#19476
+  if device == ANY_DEVICE
+filename = ROUTES_FILE
+
+return SCR.Write(path(".target.string"), filename, "")
+  else
+filename = "#{ROUTES_DIR}/ifroute-#{device}"
+
+return SCR.Execute(path(".target.remove"), filename) if 
FileUtils.Exists(filename)
+return true
+  end
+end
+
 # From *routes*, select those belonging to *device* and write
 # an appropriate config file.
 # @param device device name, or "-" for global routes
@@ -295,23 +314,15 @@
 def write_route_file(device, routes)
   routes = routes.select { |r| r["device"] == device }
 
-  if routes.empty?
-# work around bnc#19476
-if device == ANY_DEVICE
-  filename = ROUTES_FILE
-  return SCR.Write(path(".target.string"), filename, "")
-else
-  filename = "#{ROUTES_DIR}/ifroute-#{device}"
-  return SCR.Execute(path(".target.remove"), filename)
-end
+  return clear_route_file(device) if routes.empty?
+
+  if device == ANY_DEVICE
+scr_path = path(".routes")
   else
-if device == ANY_DEVICE
-  scr_path = path(".routes")
-else

commit yast2-network for openSUSE:Factory

2015-08-29 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-08-29 20:02:26

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is yast2-network

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-08-21 12:41:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-08-29 20:02:36.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 27 20:29:41 UTC 2015 - mfi...@suse.com
+
+- bnc#846201
+  - made bridge port selection persistent across tab switching
+- 3.1.128
+
+---

Old:

  yast2-network-3.1.127.tar.bz2

New:

  yast2-network-3.1.128.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.i1S4YL/_old  2015-08-29 20:02:37.0 +0200
+++ /var/tmp/diff_new_pack.i1S4YL/_new  2015-08-29 20:02:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.127
+Version:3.1.128
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.127.tar.bz2 - yast2-network-3.1.128.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.127/package/yast2-network.changes 
new/yast2-network-3.1.128/package/yast2-network.changes
--- old/yast2-network-3.1.127/package/yast2-network.changes 2015-08-18 
15:27:08.0 +0200
+++ new/yast2-network-3.1.128/package/yast2-network.changes 2015-08-28 
09:02:14.0 +0200
@@ -1,4 +1,11 @@
 ---
+Thu Aug 27 20:29:41 UTC 2015 - mfi...@suse.com
+
+- bnc#846201
+  - made bridge port selection persistent across tab switching
+- 3.1.128
+
+---
 Tue Aug 18 12:29:56 UTC 2015 - mfi...@suse.com
 
 - bnc#940892
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.127/package/yast2-network.spec 
new/yast2-network-3.1.128/package/yast2-network.spec
--- old/yast2-network-3.1.127/package/yast2-network.spec2015-08-18 
15:27:08.0 +0200
+++ new/yast2-network-3.1.128/package/yast2-network.spec2015-08-28 
09:02:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.127
+Version:3.1.128
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.127/src/include/network/lan/address.rb 
new/yast2-network-3.1.128/src/include/network/lan/address.rb
--- old/yast2-network-3.1.127/src/include/network/lan/address.rb
2015-08-18 15:27:08.0 +0200
+++ new/yast2-network-3.1.128/src/include/network/lan/address.rb
2015-08-28 09:02:14.0 +0200
@@ -446,6 +446,24 @@
   nil
 end
 
+# Initializes widget (BRIDGE_PORTS) which contains list of devices 
available
+# for enslaving in a brige.
+#
+# @param [String] key  id of the widget
+def InitBridge(key)
+  br_ports = @settings[BRIDGE_PORTS] || 
+  br_ports = NetworkInterfaces.Current[BRIDGE_PORTS] ||  if 
br_ports.empty?
+
+  items = CreateSlaveItems(
+LanItems.GetBridgeableInterfaces(LanItems.GetCurrentName),
+br_ports.split
+  )
+
+  UI.ChangeWidget(Id(key), :Items, items)
+
+  nil
+end
+
 # Default function to store the value of devices attached to bridge 
(BRIDGE_PORTS).
 # @param [String] key  id of the widget
 # @param [String] key id of the widget
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.127/src/include/network/lan/bridge.rb 
new/yast2-network-3.1.128/src/include/network/lan/bridge.rb
--- old/yast2-network-3.1.127/src/include/network/lan/bridge.rb 2015-08-18 
15:27:08.0 +0200
+++ new/yast2-network-3.1.128/src/include/network/lan/bridge.rb 2015-08-28 
09:02:14.0 +0200
@@ -34,23 +34,6 @@
   textdomain network
 end
 
-# Initializes widget (BRIDGE_PORTS) which contains list of devices 
available
-# for enslaving in a brige.
-#
-# @param [String] key  id of the widget
-def InitBridge(key)
-  br_ports = (NetworkInterfaces.Current[BRIDGE_PORTS] || ).split
-
-  items = CreateSlaveItems(
-LanItems.GetBridgeableInterfaces(LanItems.GetCurrentName),
-br_ports
-  )
-
-  UI.ChangeWidget(Id(key), :Items, items)
-
-  nil
-end
-
 

commit yast2-network for openSUSE:Factory

2015-08-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-08-21 12:41:53

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is yast2-network

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-08-11 08:25:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-08-21 12:41:54.0 +0200
@@ -1,0 +2,14 @@
+Tue Aug 18 12:29:56 UTC 2015 - mfi...@suse.com
+
+- bnc#940892
+  - fixed internal error when importing AY profile
+- 3.1.127
+
+---
+Tue Aug 18 09:35:05 UTC 2015 - igonzalezs...@suse.com
+
+- bsc#941948
+  - lan_auto client returns value properly
+- 3.1.126
+
+---

Old:

  yast2-network-3.1.125.tar.bz2

New:

  yast2-network-3.1.127.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.M8xscA/_old  2015-08-21 12:41:55.0 +0200
+++ /var/tmp/diff_new_pack.M8xscA/_new  2015-08-21 12:41:55.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.125
+Version:3.1.127
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.125.tar.bz2 - yast2-network-3.1.127.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.125/package/yast2-network.changes 
new/yast2-network-3.1.127/package/yast2-network.changes
--- old/yast2-network-3.1.125/package/yast2-network.changes 2015-08-10 
10:52:10.0 +0200
+++ new/yast2-network-3.1.127/package/yast2-network.changes 2015-08-18 
15:27:08.0 +0200
@@ -1,4 +1,18 @@
 ---
+Tue Aug 18 12:29:56 UTC 2015 - mfi...@suse.com
+
+- bnc#940892
+  - fixed internal error when importing AY profile
+- 3.1.127
+
+---
+Tue Aug 18 09:35:05 UTC 2015 - igonzalezs...@suse.com
+
+- bsc#941948
+  - lan_auto client returns value properly
+- 3.1.126
+
+---
 Mon Aug 10 08:15:39 UTC 2015 - mfi...@suse.com
 
 - bnc#916013
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.125/package/yast2-network.spec 
new/yast2-network-3.1.127/package/yast2-network.spec
--- old/yast2-network-3.1.125/package/yast2-network.spec2015-08-10 
10:52:10.0 +0200
+++ new/yast2-network-3.1.127/package/yast2-network.spec2015-08-18 
15:27:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.125
+Version:3.1.127
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.125/src/clients/lan_auto.rb 
new/yast2-network-3.1.127/src/clients/lan_auto.rb
--- old/yast2-network-3.1.125/src/clients/lan_auto.rb   2015-08-10 
10:52:10.0 +0200
+++ new/yast2-network-3.1.127/src/clients/lan_auto.rb   2015-08-18 
15:27:08.0 +0200
@@ -149,6 +149,7 @@
 
   Builtins.y2milestone(Lan auto finished (#{@ret}))
   Builtins.y2milestone()
+  @ret
 end
 
 # If there's key in m, upcase key and assign the value to ret
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.125/src/modules/LanUdevAuto.rb 
new/yast2-network-3.1.127/src/modules/LanUdevAuto.rb
--- old/yast2-network-3.1.125/src/modules/LanUdevAuto.rb2015-08-10 
10:52:10.0 +0200
+++ new/yast2-network-3.1.127/src/modules/LanUdevAuto.rb2015-08-18 
15:27:08.0 +0200
@@ -180,7 +180,7 @@
   createUdevFromIfaceName(Ops.get_list(settings, interfaces, []))
 )
   else
-@udev_rules = Ops.get_list(settings, net-udev, [])
+@udev_rules = settings[net-udev] || []
   end
   #  if (Arch::s390())
   @s390_devices = Ops.get_list(settings, s390-devices, [])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.125/test/lan_auto_test.rb 
new/yast2-network-3.1.127/test/lan_auto_test.rb
--- old/yast2-network-3.1.125/test/lan_auto_test.rb 1970-01-01 
01:00:00.0 +0100
+++ new/yast2-network-3.1.127/test/lan_auto_test.rb 2015-08-18 
15:27:08.0 +0200
@@ -0,0 +1,29 @@
+#!/usr/bin/env rspec
+

commit yast2-network for openSUSE:Factory

2015-08-11 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-08-11 08:25:47

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is yast2-network

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-08-10 09:09:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-08-11 08:25:48.0 +0200
@@ -1,0 +2,7 @@
+Mon Aug 10 08:15:39 UTC 2015 - mfi...@suse.com
+
+- bnc#916013
+  - IPv4 forwarding always enabled upon finishing setup 
+- 3.1.125
+
+---

Old:

  yast2-network-3.1.124.tar.bz2

New:

  yast2-network-3.1.125.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.Az6bR7/_old  2015-08-11 08:25:49.0 +0200
+++ /var/tmp/diff_new_pack.Az6bR7/_new  2015-08-11 08:25:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.124
+Version:3.1.125
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.124.tar.bz2 - yast2-network-3.1.125.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.124/package/yast2-network.changes 
new/yast2-network-3.1.125/package/yast2-network.changes
--- old/yast2-network-3.1.124/package/yast2-network.changes 2015-08-07 
10:07:12.0 +0200
+++ new/yast2-network-3.1.125/package/yast2-network.changes 2015-08-10 
10:52:10.0 +0200
@@ -1,4 +1,11 @@
 ---
+Mon Aug 10 08:15:39 UTC 2015 - mfi...@suse.com
+
+- bnc#916013
+  - IPv4 forwarding always enabled upon finishing setup 
+- 3.1.125
+
+---
 Wed Aug  5 08:18:49 UTC 2015 - mfi...@suse.com
 
 - bnc#916013
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.124/package/yast2-network.spec 
new/yast2-network-3.1.125/package/yast2-network.spec
--- old/yast2-network-3.1.124/package/yast2-network.spec2015-08-07 
10:07:12.0 +0200
+++ new/yast2-network-3.1.125/package/yast2-network.spec2015-08-10 
10:52:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.124
+Version:3.1.125
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.124/src/modules/Routing.rb 
new/yast2-network-3.1.125/src/modules/Routing.rb
--- old/yast2-network-3.1.124/src/modules/Routing.rb2015-08-07 
10:07:12.0 +0200
+++ new/yast2-network-3.1.125/src/modules/Routing.rb2015-08-10 
10:52:10.0 +0200
@@ -172,10 +172,10 @@
   sysctl_val
 )
 SCR.Write(path(SYSCTL_AGENT_PATH), nil)
-
-SCR.Execute(path(.target.bash), sysctl -w 
#{IPV4_SYSCTL}=#{sysctl_val})
   end
 
+  SCR.Execute(path(.target.bash), sysctl -w 
#{IPV4_SYSCTL}=#{sysctl_val})
+
   nil
 end
 




commit yast2-network for openSUSE:Factory

2015-08-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-08-10 09:09:40

Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-network.new (New)


Package is yast2-network

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2015-08-05 06:48:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-08-10 09:09:41.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug  5 08:18:49 UTC 2015 - mfi...@suse.com
+
+- bnc#916013
+  - IPv6 forwarding setup is stored persistently
+- 3.1.124 
+
+---

Old:

  yast2-network-3.1.123.tar.bz2

New:

  yast2-network-3.1.124.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.WNXvXS/_old  2015-08-10 09:09:42.0 +0200
+++ /var/tmp/diff_new_pack.WNXvXS/_new  2015-08-10 09:09:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.123
+Version:3.1.124
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -95,7 +95,6 @@
 %{yast_agentdir}/ag_udev_persistent
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
-%dir %{yast_libdir}/network
 %{yast_libdir}/network
 
 %dir %{yast_docdir}

++ yast2-network-3.1.123.tar.bz2 - yast2-network-3.1.124.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.123/package/yast2-network.changes 
new/yast2-network-3.1.124/package/yast2-network.changes
--- old/yast2-network-3.1.123/package/yast2-network.changes 2015-07-31 
16:22:10.0 +0200
+++ new/yast2-network-3.1.124/package/yast2-network.changes 2015-08-07 
10:07:12.0 +0200
@@ -1,4 +1,11 @@
 ---
+Wed Aug  5 08:18:49 UTC 2015 - mfi...@suse.com
+
+- bnc#916013
+  - IPv6 forwarding setup is stored persistently
+- 3.1.124 
+
+---
 Fri Jul 31 13:41:08 UTC 2015 - an...@suse.com
 
 - bnc#940192, bnc#935937
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.123/package/yast2-network.spec 
new/yast2-network-3.1.124/package/yast2-network.spec
--- old/yast2-network-3.1.123/package/yast2-network.spec2015-07-31 
16:22:10.0 +0200
+++ new/yast2-network-3.1.124/package/yast2-network.spec2015-08-07 
10:07:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.123
+Version:3.1.124
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -93,7 +93,6 @@
 %{yast_agentdir}/ag_udev_persistent
 %{yast_schemadir}/autoyast/rnc/networking.rnc
 %{yast_schemadir}/autoyast/rnc/host.rnc
-%dir %{yast_libdir}/network
 %{yast_libdir}/network
 
 %dir %{yast_docdir}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.123/src/modules/Routing.rb 
new/yast2-network-3.1.124/src/modules/Routing.rb
--- old/yast2-network-3.1.123/src/modules/Routing.rb2015-07-31 
16:22:10.0 +0200
+++ new/yast2-network-3.1.124/src/modules/Routing.rb2015-08-07 
10:07:12.0 +0200
@@ -50,8 +50,13 @@
 # routes file location
 ROUTES_FILE = /etc/sysconfig/network/routes
 
-SYSCTL_IPV4_PATH = .etc.sysctl_conf.\net.ipv4.ip_forward\
-SYSCTL_IPV6_PATH = .etc.sysctl_conf.\net.ipv6.conf.all.forwarding\
+# sysctl keys, used as *single* SCR path components below
+IPV4_SYSCTL = net.ipv4.ip_forward
+IPV6_SYSCTL = net.ipv6.conf.all.forwarding
+# SCR paths
+SYSCTL_AGENT_PATH = .etc.sysctl_conf
+SYSCTL_IPV4_PATH = SYSCTL_AGENT_PATH + .\#{IPV4_SYSCTL}\
+SYSCTL_IPV6_PATH = SYSCTL_AGENT_PATH + .\#{IPV6_SYSCTL}\
 
 # see man routes - difference on implicit device param (aka -) in
 # case of /etc/sysconfig/network/routes and /etc/sysconfig/network/
@@ -137,54 +142,68 @@
   nil
 end
 
+# Reads current status for both IPv4 and IPv6 forwarding
 def ReadIPForwarding
   if SuSEFirewall.IsEnabled
 @Forward_v4 = SuSEFirewall.GetSupportRoute
-# FIXME: missing support for setting IPv6 forwarding enablement in
-# SuSEFirewall module and in SuSEFirewall2 at all
   else
 @Forward_v4 = SCR.Read(path(SYSCTL_IPV4_PATH)) == 1
-@Forward_v6 = SCR.Read(path(SYSCTL_IPV6_PATH)) == 1
   end
 
+  @Forward_v6 = SCR.Read(path(SYSCTL_IPV6_PATH)) == 1
+
   log.info(Forward_v4=#{@Forward_v4})
   

  1   2   >