Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sle 12 sp3 bsc 1175624 #684

Merged
merged 4 commits into from Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions package/autoyast2.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Sep 2 16:03:15 CEST 2020 - schubi@suse.de

- Enable encryption for RAIDs (bsc#1175624).
- 3.2.32.7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, those nice version numbers... 😃


-------------------------------------------------------------------
Fri Apr 3 09:27:04 CEST 2020 - schubi@suse.de

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


Name: autoyast2
Version: 3.2.32.6
Version: 3.2.32.7
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
3 changes: 2 additions & 1 deletion src/modules/AutoinstRAID.rb
Expand Up @@ -174,8 +174,9 @@ def Write
dev = "/dev/md"+md.fetch("partition_nr", 0).to_s
end
md["device"] = dev
if Ops.get_symbol(md, "enc_type", :none) != :none
if md["crypt_fs"]
Storage.SetCryptPwd(dev, Ops.get_string(md, "crypt_key", ""))
md["enc_type"] = md["format"] ? :luks : :twofish
end
Builtins.y2milestone("Working on %1", md)
chunk_size = 4
Expand Down