Skip to content

Commit

Permalink
Merge a4a998c into 8fe8d17
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Oct 19, 2020
2 parents 8fe8d17 + a4a998c commit abae3ee
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM registry.opensuse.org/yast/head/containers/yast-ruby:latest
FROM registry.opensuse.org/yast/sle-15/sp2/containers/yast-ruby
COPY . /usr/src/app

2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require "yast/rake"

Yast::Tasks.submit_to :sle15sp2

Yast::Tasks.configuration do |conf|
# lets ignore license check for now
conf.skip_license_check << /.*/
Expand Down
7 changes: 7 additions & 0 deletions package/yast2-firewall.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Oct 16 15:15:49 UTC 2020 - Josef Reidinger <jreidinger@suse.com>

- Do not enable firewall during first stage of AutoYaST
(bsc#1177778)
- 4.3.7

-------------------------------------------------------------------
Tue Oct 13 11:15:06 UTC 2020 - Knut Anderssen <kanderssen@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-firewall.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-firewall
Version: 4.3.6
Version: 4.3.7
Release: 0
Summary: YaST2 - Firewall Configuration
Group: System/YaST
Expand Down
3 changes: 3 additions & 0 deletions src/lib/y2firewall/clients/installation_finish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ def configure_firewall
# Convenience method to enable / disable the firewalld service depending
# on the proposal settings
def configure_firewall_service
# do not run in autoyast as it is done in second stage (bsc#1177778)
return if Yast::Mode.auto
# and also only installation, not upgrade one. NOTE: installation mode include auto
return unless Yast::Mode.installation

@settings.enable_firewall ? @firewalld.enable! : @firewalld.disable!
Expand Down

0 comments on commit abae3ee

Please sign in to comment.