You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If the mountpoint is in auto_mounts, log a big error about it being prone to failure, allow
545
+
ifmountpointinself["auto_mounts"]:
546
+
self.logger.error(f"Found a device mapper mount in auto_mounts: {c_(mountpoint, 'yellow', bold=True)}")
547
+
self.logger.warning(
548
+
"auto_mounts is used for mounts before LVM/LUKS init (during mount_fstab). Device mapper mounts defined here may fail to activate and stop the boot process!"
549
+
)
550
+
ifself["validate"]:
551
+
raiseValidationError(
552
+
f"Device mapper mount found in auto_mounts, auto_mounts cannot be device mapper based: {c_(mountpoint, 'red', bold=True)}"
553
+
)
554
+
544
555
# Get the virtual block device name using the major/minor
0 commit comments