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.000000000 +0100
+++ new/yast2-network-4.0.23/package/yast2-network.changes      2018-03-22 
09:46:55.000000000 +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.000000000 +0100
+++ new/yast2-network-4.0.23/package/yast2-network.spec 2018-03-22 
09:46:55.000000000 +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.rnc    2018-03-09 
10:18:26.000000000 +0100
+++ new/yast2-network-4.0.23/src/autoyast-rnc/networking.rnc    2018-03-22 
09:46:55.000000000 +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.000000000 +0100
+++ new/yast2-network-4.0.23/src/clients/remote.rb      2018-03-22 
09:46:55.000000000 +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)
 
-      remote.write if ret == :next
+      if ret == :next
+        remote.write
+        firewalld.write
+      end
 
       UI.CloseDialog
 


Reply via email to