-
Notifications
You must be signed in to change notification settings - Fork 201
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
lvmdevices: always create devices file #324
Merged
mz-pdm
merged 2 commits into
oVirt:master
from
aesteve-rh:aesteve/always-create-devices-file
Oct 4, 2022
Merged
lvmdevices: always create devices file #324
mz-pdm
merged 2 commits into
oVirt:master
from
aesteve-rh:aesteve/always-create-devices-file
Oct 4, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aesteve-rh
force-pushed
the
aesteve/always-create-devices-file
branch
from
September 27, 2022 11:24
b35856a
to
dcd3bc1
Compare
aesteve-rh
force-pushed
the
aesteve/always-create-devices-file
branch
from
September 27, 2022 11:26
dcd3bc1
to
659ee17
Compare
aesteve-rh
added
the
verified
Change was tested; please describe how it was tested in the PR
label
Sep 27, 2022
Installed on a host without lvm mounts and no devices file (
If we run
And lvm command does not see any volume:
|
nirs
requested changes
Sep 27, 2022
aesteve-rh
force-pushed
the
aesteve/always-create-devices-file
branch
from
September 30, 2022 10:01
659ee17
to
487051a
Compare
Verified with latest version (that adds a comment to the devicesfile):
Original LVM header (for reference):
|
/ost |
aesteve-rh
force-pushed
the
aesteve/always-create-devices-file
branch
from
September 30, 2022 12:58
487051a
to
6963951
Compare
/ost |
nirs
approved these changes
Sep 30, 2022
Remove try...except block around _create_system_devices. The cmdutils.Error exception is only catched to log a warning and raise it again. The tool will not print the log as of now, but even if it did, logging a warning and raising is a wrong pattern which adds no valuable information. Errors that happen during _create_system_devices should be just propagated to the caller. Signed-off-by: Albert Esteve <aesteve@redhat.com>
Create empty devices file even if no lvm volumes are found with `vdsm-tool config-lvm-filter`. Otherwise configuring LVM to use a devices file without the file allows lvm commands to see all volumes, with the associated risk. Bug-Url: https://bugzilla.redhat.com/2125290 Signed-off-by: Albert Esteve <aesteve@redhat.com>
mz-pdm
force-pushed
the
aesteve/always-create-devices-file
branch
from
October 4, 2022 13:41
6963951
to
aa96827
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Create empty devices file even if no lvm
volumes are found with
vdsm-tool config-lvm-filter
.Otherwise configuring LVM to use a devices
file without the file allows lvm commands
to see all volumes, with the associated risk.
Bug-Url: https://bugzilla.redhat.com/2125290
Signed-off-by: Albert Esteve aesteve@redhat.com