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

Remove 'linear' from list of expected MD RAID levels #5683

Open
wants to merge 2 commits into
base: rhel-10
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dracut/anaconda-modprobe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [ "$ARCH" = "ppc" ]; then
MODULE_LIST+=" spufs "
fi

MODULE_LIST+=" raid0 raid1 raid5 raid6 raid456 raid10 linear dm-mod dm-zero \
MODULE_LIST+=" raid0 raid1 raid5 raid6 raid456 raid10 dm-mod dm-zero \
dm-mirror dm-snapshot dm-multipath dm-round-robin dm-crypt cbc \
sha256 lrw xts "

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_get_default_file_system(self):
def test_get_supported_raid_levels(self):
"""Test GetSupportedRaidLevels."""
assert self.interface.GetSupportedRaidLevels(DEVICE_TYPE_MD) == \
['linear', 'raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6']
['raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6']

@patch('pyanaconda.modules.storage.partitioning.interactive.utils.get_format')
@patch('pyanaconda.modules.storage.partitioning.interactive.utils.platform', new_callable=EFI)
Expand Down
Loading