-
Notifications
You must be signed in to change notification settings - Fork 362
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
Disable LVM auto-activation during installation #6140
base: main
Are you sure you want to change the base?
Disable LVM auto-activation during installation #6140
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would need a bump in pythonblivetver in the specfile or a try catch where we would only conditionally run disable_lvm_autoactivation
if it's exported from LVM module.
I prefer the latter.
042af86
to
8cfe11d
Compare
I bumped the blivet version to 3.12. I plan for this and few other changes to wait for Fedora 43 so waiting for a new (not yet released) blivet version shouldn't be a big deal. |
We don't want udev randomly activating LVs during installation, any activation should be done manually by blivet. Unfortunately the only way to do this system-wide is to change LVM config. We change the config during the storage module initialization and change it back when shutting down Anaconda. Related: rhbz#2309350
8cfe11d
to
9d2026a
Compare
/kickstart-test --testtype smoke |
/kickstart-test --testtype storage |
Removing the blocked label, blivet 3.12.0 is now available in both rawhide and f42 |
Tests are often failing on timeout because of LVM auto-activation [1] [1] rhinstaller/anaconda#6140 This can be reverted once the above bug is resolved.
Tests are often failing on timeout because of LVM auto-activation [1] [1] rhinstaller/anaconda#6140 This can be reverted once the above bug is resolved.
We don't want udev randomly activating LVs during installation, any activation should be done manually by blivet.
Unfortunately the only way to do this system-wide is to change LVM config. We change the config during the storage module initialization and change it back when shutting down Anaconda.
Related: rhbz#2309350
Blocked by: storaged-project/blivet#1340