From 4766a3e2090a19e23ba3df3511ccc2362a03db5a Mon Sep 17 00:00:00 2001 From: Abdul Karim Date: Tue, 26 Aug 2025 22:16:42 +0100 Subject: [PATCH] New option to allow override of how fstab entries get created. New option to override how fstab entries get created. For vols such as vxvm, using uuid does not work. it should always be devpath. This will allow to control this. ncm-lib-blockdevices code has been updated to check for this option, if defined and true, it will ignore uuid and always use devpath when creating entries in fstab. Requires ncm-lib-blockdevices >=25.x --- quattor/filesystems.pan | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quattor/filesystems.pan b/quattor/filesystems.pan index 525c56d08..a61981114 100644 --- a/quattor/filesystems.pan +++ b/quattor/filesystems.pan @@ -74,4 +74,6 @@ type structure_filesystem = { "ksfsformat" ? boolean @{ When defined and false, AII will ignore this filesystem } "aii" ? boolean + @{ When defined and true, the device path will be used in fstab for the mount point, even if a UUID is available.} + "mount_devpath" ? boolean };