Skip to content

Commit

Permalink
Merge pull request #159 from yast/merge-sle-15-sp6
Browse files Browse the repository at this point in the history
Merge `SLE-15-SP6` into `master`
  • Loading branch information
imobachgs authored Aug 9, 2024
2 parents 2b34506 + c64ca5e commit 06065ff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
7 changes: 7 additions & 0 deletions package/yast2-security.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Aug 6 11:34:20 UTC 2024 - Knut Anderssen <kanderssen@suse.com>

- Do not load the security settings from the security policy until
needed (bsc#1216615).
- 5.0.1

-------------------------------------------------------------------
Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidinger@suse.cz>

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


Name: yast2-security
Version: 5.0.0
Version: 5.0.1
Release: 0
Group: System/YaST
License: GPL-2.0-only
Expand Down
18 changes: 10 additions & 8 deletions src/lib/y2security/security_policies/target_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,19 @@ class TargetConfig
# @return [Bootloader::BootloaderFactory]
attr_accessor :bootloader

# @return [Y2Network::Config]
attr_accessor :network

# @return [Installation::SecuritySettings, nil] nil if yast2-installation is not available
attr_accessor :security

def initialize
@storage = default_devicegraph
@network = default_network_config
@bootloader = default_bootloader
@security = default_security_settings
end

# @return [Y2Network::Config]
def network
default_network_config
end

# @return [Installation::SecuritySettings, nil] nil if yast2-installation is not available
def security
default_security_settings
end

# Default devicegraph
Expand Down

0 comments on commit 06065ff

Please sign in to comment.