Skip to content

Commit

Permalink
Merge pull request #753 from yast/merge_SLE-12-SP4
Browse files Browse the repository at this point in the history
Merge SLE-12-SP4 into SLE-15-GA
  • Loading branch information
teclator committed Jul 3, 2018
2 parents 116b134 + eb9595a commit 754a121
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library/network/src/lib/network/susefirewall2.rb
Expand Up @@ -1627,7 +1627,7 @@ def ActivateConfiguration
# starting firewall during second stage can cause deadlock in systemd - bnc#798620
# Moreover, it is not needed. Firewall gets started via dependency on multi-user.target
# when second stage is over.
if Mode.installation
if Mode.installation && !Mode.autoinst
Builtins.y2milestone("Do not touch firewall services during installation")

return true
Expand Down
4 changes: 2 additions & 2 deletions library/network/src/modules/NetworkInterfaces.rb
Expand Up @@ -848,8 +848,8 @@ def Write(devregex)
# look in OriginalDevs because we need to catch all variables
# of the alias

dev_aliases = original_devs[typ][dev]["_aliases"][anum] || {}
dev_aliases.keys.each do |key|
dev_aliases = original_devs.fetch(typ, {}).fetch(dev, {}).fetch("_aliases", {})
dev_aliases.fetch(anum, {}).keys.each do |key|
p = base + "#{key}_#{anum}"
log.debug("deleting: #{p}")
SCR.Write(p, nil)
Expand Down
7 changes: 7 additions & 0 deletions package/yast2.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jul 3 08:01:07 UTC 2018 - knut.anderssen@suse.com

- Network: Prevent from crashing when trying to delete some ip
aliases from the original devices (bsc#1098919)
- 4.0.79

-------------------------------------------------------------------
Wed Jun 27 15:42:04 CEST 2018 - schubi@suse.de

Expand Down
2 changes: 1 addition & 1 deletion package/yast2.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2
Version: 4.0.78
Version: 4.0.79
Release: 0
Summary: YaST2 - Main Package
License: GPL-2.0-only
Expand Down

0 comments on commit 754a121

Please sign in to comment.