[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

hobbitclient-sunos.sh FSTYPES determination problem



Hello
 
In the file hobbitclient-sunos.sh the FSTYPES entry can lost filesystems with long mountpoints.
 
Happen here with vxfs filesystem;
 
$/bin/df -n -l
/                  : ufs
/devices           : devfs
/system/contract   : ctfs
/proc              : proc
/dev/vx/rdmp       : tmpfs
/unshared/AA04/oracle: vxfs
/unshared/AA04/oracle/data1: vxfs
/unshared/AA04/oracle/data2: vxfs
/unshared/AA04/oracle/data3: vxfs

with the awk '{print $3}' command in FSTYPES the vxfs ist missed because there is no space.
 
Solution for us; adding seperator to awk -F":" '{print $2}'
 
Regards
Roland