aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-06-10 05:04:09 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-06-10 05:04:09 +0000
commit04afbf45d788f01bae320989e1c2a1fc9e06b7f3 (patch)
tree2d5021f25f1b2fb31d9790e75902f913f13b6ecd /contrib
parent68b985f6a0d34e2e81270e68447d0f57818c563a (diff)
downloadmonitoring-plugins-04afbf45d788f01bae320989e1c2a1fc9e06b7f3.tar.gz
add comment about shell quote removal to address https://sourceforge.net/tracker/index.php?func=detail&aid=661916&group_id=29880&atid=397597
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@544 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'contrib')
-rw-r--r--contrib/urlize.pl15
1 files changed, 14 insertions, 1 deletions
diff --git a/contrib/urlize.pl b/contrib/urlize.pl
index 8bb591f2..5acb52de 100644
--- a/contrib/urlize.pl
+++ b/contrib/urlize.pl
@@ -5,7 +5,20 @@
#
# A wrapper around Nagios plugins that provides a URL link in the output
#
-
+#
+# Pay close attention to quoting to ensure that the shell passes the
+# expected data to the plugin. For example, in:
+#
+# urlize http://example.com/ check_http -H example.com -r 'two words'
+#
+# the shell will remove the single quotes and urlize will see:
+#
+# urlize http://example.com/ check_http -H example.com -r two words
+#
+# You probably want:
+#
+# urlize http://example.com/ \"check_http -H example.com -r 'two words'\"
+#
($#ARGV < 1) && die "Incorrect arguments";
my $url = shift;