| Basic Info Module Version: Puppet Version: 2019.8.10 OS Name/Version: RHEL8 Whenever bind-mount is used, facts partition always show the bind mount point for that partition. Consulted with principal support engineer Jarret Lavallee and the partition fact is showing the partitions from the local block devices. mount is a string and not an array since it is expected that it would only be mounted once. In this example, /afterbind is the bind-mount. [root@pe-server-fb051c-0 ~]# facter -p partitions."/dev/mapper/vg0-testbind" { filesystem => "xfs", mount => "/afterbind", size => "5.00 GiB", size_bytes => 5368709120, uuid => "07f7c023-3a90-4fec-a3de-db287dc55c19" } [root@pe-server-fb051c-0 ~]# findmnt | grep bind ├─/beforebind /dev/mapper/vg0-testbind xfs rw,relatime,seclabel,attr2,inode64,noquota └─/afterbind /dev/mapper/vg0-testbind xfs rw,relatime,seclabel,attr2,inode64,noquota [root@pe-server-fb051c-0 ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 50G 0 disk ├─sda1 8:1 0 200M 0 part /boot/efi └─sda2 8:2 0 49.8G 0 part / sdb 8:16 0 10G 0 disk └─vg0-testbind 253:0 0 5G 0 lvm /afterbind Desired Behavior: The enhancement could be add mountpoints as an array |