Changeset 3407
- Timestamp:
- 03/10/10 14:13:52 (2 years ago)
- Files:
-
- trunk/plugins/node.d/varnish_.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plugins/node.d/varnish_.in
r3293 r3407 678 678 sub autoconf 679 679 { 680 if (`which $varnishstatexec 2>/dev/null` eq '') { 681 print "no (which $varnishstatexec returns blank)\n"; 682 exit 0; 683 } 684 print "yes\n"; 680 (`which $varnishstatexec 2>/dev/null` =~ m{^/}) 681 ? print "yes\n" 682 : print "no ($varnishstatexec could not be found)\n"; 685 683 exit 0; 686 684 }
