Changeset 80
- Timestamp:
- 02/01/04 20:00:29 (8 years ago)
- Files:
-
- trunk/node/node.d.freebsd/df.in (modified) (3 diffs, 1 prop)
- trunk/node/node.d.freebsd/df_inode.in (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/node/node.d.freebsd/df.in
- Property cvs2svn:cvs-rev changed from 1.1 to 1.2
r6 r80 9 9 # 10 10 # $Log$ 11 # Revision 1.2 2004/02/01 19:00:29 lupe 12 # Ignore devfs,fdescfs,linprocfs in addition to procfs,nfs. 13 # 11 14 # Revision 1.1 2004/01/02 18:50:00 jimmyo 12 15 # Renamed occurrances of lrrd -> munin … … 39 42 echo 'graph_args --upper-limit 100 -l 0' 40 43 echo 'graph_vlabel %' 41 /bin/df -P -t noprocfs, nfs | tail +2 | grep -v "//" | while read i; do44 /bin/df -P -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | while read i; do 42 45 name=`echo $i | sed 's/[\/.-]/_/g'| awk '{ print $1 }'` 43 46 echo -n "$name.label " … … 49 52 fi 50 53 51 /bin/df -P -t noprocfs, nfs | tail +2 | grep -v "//" | while read i; do54 /bin/df -P -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | while read i; do 52 55 name=`echo $i | sed 's/[\/.-]/_/g'| awk '{ print $1 ".value " }'` 53 56 echo -n "$name " trunk/node/node.d.freebsd/df_inode.in
- Property cvs2svn:cvs-rev changed from 1.1 to 1.2
r6 r80 9 9 # 10 10 # $Log$ 11 # Revision 1.2 2004/02/01 19:00:29 lupe 12 # Ignore devfs,fdescfs,linprocfs in addition to procfs,nfs. 13 # 11 14 # Revision 1.1 2004/01/02 18:50:00 jimmyo 12 15 # Renamed occurrances of lrrd -> munin … … 28 31 29 32 print_values() { 30 /bin/df -P -i -t noprocfs, nfs | tail +2 | grep -v "//" | while read i; do33 /bin/df -P -i -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | while read i; do 31 34 name=`echo $i | sed 's/[\/.]/_/g'| awk '{ print $1 ".value " }'` 32 35 echo -n "$name " … … 49 52 echo 'graph_args --upper-limit 100 -l 0' 50 53 echo 'graph_vlabel %' 51 /bin/df -P -i -t noprocfs, nfs | tail +2 | grep -v "//" | while read i; do54 /bin/df -P -i -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | while read i; do 52 55 name=`echo $i | sed 's/[\/.]/_/g'| awk '{ print $1 }'` 53 56 echo -n "$name.label "
