summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/subst.in
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2005-08-30 22:11:42 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2005-08-30 22:11:42 (GMT)
commit3c554b72de0df28175e7ed8a0bcf3b7e509335d9 (patch)
treeadc0421d31f857d27adec8d91c376e634d2591d5 /plugins-scripts/subst.in
parent851c74a2a66e37f1aa7c113feebe3da9ba7eebd1 (diff)
downloadmonitoring-plugins-3c554b72de0df28175e7ed8a0bcf3b7e509335d9.tar.gz
Better comments for what the substitutions are doing
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1212 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/subst.in')
-rw-r--r--plugins-scripts/subst.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins-scripts/subst.in b/plugins-scripts/subst.in
index 2ac4534..8986868 100644
--- a/plugins-scripts/subst.in
+++ b/plugins-scripts/subst.in
@@ -58,12 +58,12 @@ BEGIN {
58 sub(/\=.*$/,"='@with_trusted_path@' # autoconf-derived"); 58 sub(/\=.*$/,"='@with_trusted_path@' # autoconf-derived");
59} 59}
60 60
61# Specific programs 61# If a script contains a reference to a fully qualified command,
62 62# subst will replace the fully qualified command with whatever is
63# returned from the which subroutine
63# 64#
64/^[^#]/ && /(\/.*)?\/(bin|sbin|lib|libexec)\// { 65/^[^#]/ && /(\/.*)?\/(bin|sbin|lib|libexec)\// {
65 match($0,/(\/.*)?\/(bin|sbin|lib|libexec)\/[-_a-zA-Z0-9]+/); 66 match($0,/(\/.*)?\/(bin|sbin|lib|libexec)\/[-_a-zA-Z0-9]+/);
66 start=RSTART+RLENGTH;
67 c=substr($0,RSTART,RLENGTH); 67 c=substr($0,RSTART,RLENGTH);
68 sub(c,which(c,path)); 68 sub(c,which(c,path));
69} 69}