X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=facts%2Fmounts.rb;h=2a075ccba0d2a132e81459530ce9601f77f171aa;hb=5872b6aadfceee88690e528910131ec585d8388b;hp=81974b9de1145094d3eca59c4fccc1040b763a20;hpb=2e768b035f835f05f0b0eb9118f90814075c73ea;p=mirror%2Fdsa-puppet.git diff --git a/facts/mounts.rb b/facts/mounts.rb index 81974b9de..2a075ccba 100644 --- a/facts/mounts.rb +++ b/facts/mounts.rb @@ -2,10 +2,10 @@ begin require 'filesystem' Facter.add("mounts") do - ignorefs = ["NFS", "nfs", "nfs4", "afs", "binfmt_misc", "proc", "smbfs", + ignorefs = ["NFS", "nfs", "nfs4", "nfsd", "afs", "binfmt_misc", "proc", "smbfs", "autofs", "iso9660", "ncpfs", "coda", "devpts", "ftpfs", "devfs", "mfs", "shfs", "sysfs", "cifs", "lustre_lite", "tmpfs", "usbfs", "udf", - "fusectl", "fuse.snapshotfs"] + "fusectl", "fuse.snapshotfs", "rpc_pipefs"] mountpoints = [] FileSystem.mounts.each do |m| if ((not ignorefs.include?(m.fstype)) && (m.options !~ /bind/))