Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/modules/mount/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_partitions(device_name, seapath_flavor):
libcalamares.utils.error(f"Failed to list partitions of {device_name}.")
raise

rootfs_partition_index = partitions.index("/dev/mapper/vg2-root")
rootfs_partition_index = partitions.index("/dev/mapper/vg1-root")
rootfs_partition = partitions[rootfs_partition_index]
else:
rootfs_partition = partitions[3]
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rawimage/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def remove_volume_group(mount_point):
["/usr/sbin/vgremove", "-y", vg_name], check=True
)
except subprocess.CalledProcessError:
libcalamares.utils.warning(f"Failed to disable volume group on: {mount_point}")
libcalamares.utils.error(f"Failed to disable volume group on: {mount_point}")
raise


Expand Down