summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-04-08 13:14:53 (GMT)
committerAndreas Baumann <mail@andreasbaumann.cc>2021-04-08 13:14:53 (GMT)
commit1debd29b573f4d81eeba4d7f78f797c348b231ce (patch)
treef1b2538e94e74e2b7f1f1381b58ea11e92cff3fc
parenta6acea7941a2a5519ab49d13b5adf946a50b5ea5 (diff)
downloadmonitoring-plugins-1debd29.tar.gz
check_curl: make -C obvious (from check_http, part 2)
-rw-r--r--plugins/check_curl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 892300a..8fc97f4 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1858,6 +1858,10 @@ print_usage (void)
1858 printf (" %s -H <vhost> | -I <IP-address> -C <warn_age>[,<crit_age>]\n",progname); 1858 printf (" %s -H <vhost> | -I <IP-address> -C <warn_age>[,<crit_age>]\n",progname);
1859 printf (" [-p <port>] [-t <timeout>] [-4|-6] [--sni]\n"); 1859 printf (" [-p <port>] [-t <timeout>] [-4|-6] [--sni]\n");
1860 printf ("\n"); 1860 printf ("\n");
1861#ifdef LIBCURL_FEATURE_SSL
1862 printf ("%s\n", _("In the first form, make an HTTP request."));
1863 printf ("%s\n\n", _("In the second form, connect to the server and check the TLS certificate."));
1864#endif
1861 printf ("%s\n", _("WARNING: check_curl is experimental. Please use")); 1865 printf ("%s\n", _("WARNING: check_curl is experimental. Please use"));
1862 printf ("%s\n\n", _("check_http if you need a stable version.")); 1866 printf ("%s\n\n", _("check_http if you need a stable version."));
1863} 1867}