summaryrefslogtreecommitdiff
path: root/src/check_curl.ggo
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-09-28 15:01:44 +0000
committerAndreas Baumann <abaumann@yahoo.com>2009-09-28 15:01:44 +0000
commit864f2f68ef8e2214e6caeadd7207a7e6ede25cc3 (patch)
treeb2e1785cb75086f90f024993a81cff148e23c704 /src/check_curl.ggo
parent84a914e547b30d183be51a48cbc630174481c430 (diff)
downloadnagios-plugin-curl-864f2f68ef8e2214e6caeadd7207a7e6ede25cc3.tar.gz
nagios-plugin-curl-864f2f68ef8e2214e6caeadd7207a7e6ede25cc3.tar.bz2
added all SSL options we currently need, --insecure worksm already
Diffstat (limited to 'src/check_curl.ggo')
-rw-r--r--src/check_curl.ggo23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/check_curl.ggo b/src/check_curl.ggo
index 2654c54..a34d70f 100644
--- a/src/check_curl.ggo
+++ b/src/check_curl.ggo
@@ -93,3 +93,26 @@ option "useragent" A "String to be sent in http header as \"User Agent\""
string
typestr="STRING"
optional
+
+option "insecure" - "Allow connections to SSL sites without certs (SSL)"
+ optional
+
+option "cacert" - "CA certificate to verify peer against (SSL)"
+ string
+ typestr="file"
+ optional
+
+option "cert" E "Client certificate file and password (SSL)"
+ string
+ typestr="file"
+ optional
+
+option "key" - "Private key file name (SSL)"
+ string
+ typestr="key"
+ optional
+
+option "pass" - "Pass phrase for the private key (SSL)"
+ string
+ typestr="pass"
+ optional