Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2014-08-11 10:09:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2014-08-07 
08:07:33.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-08-11 
10:09:40.000000000 +0200
@@ -1,0 +2,15 @@
+Thu Aug  7 12:14:16 UTC 2014 - loci...@suse.com
+
+- SuSEFirewall: Reading SuSEfirewall2 configuration whenever it's
+  possible instead of simply skipping it in Stage.initial - package
+  can be already available at the end of installation (bnc#887406)
+- 3.1.95
+
+-------------------------------------------------------------------
+Thu Aug  7 11:02:41 UTC 2014 - an...@suse.com
+
+- Added two new generic 'waiting' messages, needed in yast-country
+  to fix bnc#888804
+- 3.1.94
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.1.93.tar.bz2

New:
----
  yast2-3.1.95.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.PWvKp9/_old  2014-08-11 10:09:41.000000000 +0200
+++ /var/tmp/diff_new_pack.PWvKp9/_new  2014-08-11 10:09:41.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.93
+Version:        3.1.95
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 

++++++ yast2-3.1.93.tar.bz2 -> yast2-3.1.95.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.93/library/general/src/modules/Message.rb 
new/yast2-3.1.95/library/general/src/modules/Message.rb
--- old/yast2-3.1.93/library/general/src/modules/Message.rb     2014-08-06 
13:51:46.000000000 +0200
+++ new/yast2-3.1.95/library/general/src/modules/Message.rb     2014-08-07 
14:56:44.000000000 +0200
@@ -260,6 +260,15 @@
       _("Failed to install required packages.")
     end
 
+    def updating_configuration
+      # TRANSLATORS: Popup message
+      _("Updating system configuration...")
+    end
+
+    def takes_a_while
+      _("This may take a while.")
+    end
+
     publish :function => :CannotContinueWithoutPackagesInstalled, :type => 
"string ()"
     publish :function => :CannotStartService, :type => "string (string)"
     publish :function => :CannotRestartService, :type => "string (string)"
@@ -283,6 +292,8 @@
     publish :function => :CannotReadCurrentSettings, :type => "string ()"
     publish :function => :SuSEConfigFailed, :type => "string ()"
     publish :function => :FailedToInstallPackages, :type => "string ()"
+    publish :function => :updating_configuration, :type => "string ()"
+    publish :function => :takes_a_while, :type => "string ()"
   end
 
   Message = MessageClass.new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.93/library/network/src/modules/SuSEFirewall.rb 
new/yast2-3.1.95/library/network/src/modules/SuSEFirewall.rb
--- old/yast2-3.1.93/library/network/src/modules/SuSEFirewall.rb        
2014-08-06 13:51:46.000000000 +0200
+++ new/yast2-3.1.95/library/network/src/modules/SuSEFirewall.rb        
2014-08-07 14:56:44.000000000 +0200
@@ -34,6 +34,10 @@
 
 module Yast
   class SuSEFirewallClass < Module
+    CONFIG_FILE = "/etc/sysconfig/SuSEfirewall2"
+
+    include Yast::Logger
+
     def main
       textdomain "base"
 
@@ -2460,17 +2464,9 @@
         return @fw_service_can_be_configured
       end
 
-      # bnc #429861
-      if Stage.initial
-        Builtins.y2warning("Stage::initial -> firewall can't be configured.")
-        FillUpEmptyConfig()
-        return false
-      end
-
-      if !SuSEFirewallIsInstalled()
-        Builtins.y2warning(
-          "Package not installed, disabling SuSEfirewall2-related functions."
-        )
+      # bnc #887406
+      if !FileUtils.Exists(CONFIG_FILE) || !SuSEFirewallIsInstalled()
+        log.warn "No firewall config -> firewall can't be read"
         FillUpEmptyConfig()
         return false
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.93/package/yast2.changes 
new/yast2-3.1.95/package/yast2.changes
--- old/yast2-3.1.93/package/yast2.changes      2014-08-06 13:51:46.000000000 
+0200
+++ new/yast2-3.1.95/package/yast2.changes      2014-08-07 14:56:44.000000000 
+0200
@@ -1,4 +1,19 @@
 -------------------------------------------------------------------
+Thu Aug  7 12:14:16 UTC 2014 - loci...@suse.com
+
+- SuSEFirewall: Reading SuSEfirewall2 configuration whenever it's
+  possible instead of simply skipping it in Stage.initial - package
+  can be already available at the end of installation (bnc#887406)
+- 3.1.95
+
+-------------------------------------------------------------------
+Thu Aug  7 11:02:41 UTC 2014 - an...@suse.com
+
+- Added two new generic 'waiting' messages, needed in yast-country
+  to fix bnc#888804
+- 3.1.94
+
+-------------------------------------------------------------------
 Wed Aug  6 11:45:33 UTC 2014 - jsr...@suse.cz
 
 - read products from system (not repository) also during live
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.93/package/yast2.spec 
new/yast2-3.1.95/package/yast2.spec
--- old/yast2-3.1.93/package/yast2.spec 2014-08-06 13:51:46.000000000 +0200
+++ new/yast2-3.1.95/package/yast2.spec 2014-08-07 14:56:44.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.93
+Version:        3.1.95
 Release:        0
 URL:            https://github.com/yast/yast-yast2
 

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

Reply via email to