summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 917fcc7)
raw | patch | inline | side by side (parent: 917fcc7)
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 20 May 2009 04:43:10 +0000 (00:43 -0400) | ||
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 20 May 2009 04:43:10 +0000 (00:43 -0400) |
NEWS | patch | blob | history | |
THANKS.in | patch | blob | history | |
plugins-scripts/subst.in | patch | blob | history |
index a7830252ec1f90cf515cbc66216108c16837f7ef..25009822348a66fd8bfa65fb2a7e9aed43f2253f 100644 (file)
--- a/NEWS
+++ b/NEWS
check_nt can return UNKNOWN on timeouts (-u)
Fixed typos for check_disk (Chris Pepper)
Fixed check_mysql* not using password set in my.cnf (#2531905 - Ben Timby) - Specify an empty password explicitly if you need to override it.
+ Fixed awk subst.in/subst script path error (#2722832 - Martin Foster)
1.4.13 25th Sept 2008
Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen)
diff --git a/THANKS.in b/THANKS.in
index 4fe6425bcde75581162f162fcbe2b8d41d40de8e..b173eb6e37b607fb39dfb63cacf02ca983fe1817 100644 (file)
--- a/THANKS.in
+++ b/THANKS.in
Oskar Ahner
Chris Pepper
Ben Timby
+Martin Foster
index 80b93d9d3c5d8cbf4b82a96eb2f10eab2eeab879..a70ad8842f17d99353fecc3c1f35e59c4302626d 100644 (file)
--- a/plugins-scripts/subst.in
+++ b/plugins-scripts/subst.in
/^#! ?\/.*\/[a-z]{0,2}awk/ {sub(/^#! ?\/.*\/[a-z]{0,2}awk/,"#! @AWK@");}
/^#! ?\/.*\/sh/ {sub(/^#! ?\/.*\/sh/,"#! @SHELL@");}
+# If a script contains a reference to a fully qualified command,
+# subst will replace the fully qualified command with whatever is
+# returned from the which subroutine. run before changes to INC to add libexecdir
+# FIXME: Prepend executables with a substitution keyword instead.
+#
+/^[^#]/ && /(\/.*)?\/(bin|sbin|lib|libexec)\// {
+ match($0,/(\/.*)?\/(bin|sbin|lib|libexec)\/[-_a-zA-Z0-9]+/);
+ c=substr($0,RSTART,RLENGTH);
+ sub(c,which(c,path));
+}
+
# add to libexecdir to INC for perl utils.pm
/^use/ { if (/lib/) { if (/utils.pm|"."/ ) {sub(/utils.pm|"."/,led() )} } }
sub(/\=.*$/,"='@with_trusted_path@' # autoconf-derived");
}
-# If a script contains a reference to a fully qualified command,
-# subst will replace the fully qualified command with whatever is
-# returned from the which subroutine
-#
-/^[^#]/ && /(\/.*)?\/(bin|sbin|lib|libexec)\// {
- match($0,/(\/.*)?\/(bin|sbin|lib|libexec)\/[-_a-zA-Z0-9]+/);
- c=substr($0,RSTART,RLENGTH);
- sub(c,which(c,path));
-}
-
{
print;
}