File: //proc/thread-self/root/proc/thread-self/root/usr/share/locaweb-plugins/check-mk/df.sh
#!/bin/bash
# The exclusion list is getting a bit of a problem. -l should hide any remote FS but seems
# to be all but working.
excludefs="-x smbfs -x cifs -x iso9660 -x udf -x mvfs"
df -PTk $excludefs | egrep -v 'fuse|XSLocalEXT|user/0' | sed 1d
# VMWare shows its own filesystems with 'vdf'. Just one
# problem: it outputs not 7 but only 6 columns
if type vdf > /dev/null
then
vdf -P | grep ^/vmfs/volumes | sed 's/ / vmfs /'
fi