mirror of
https://github.com/c-kr/check_json.git
synced 2024-11-23 19:03:49 +01:00
Add CA cert option
This commit is contained in:
parent
36f30b8151
commit
2d14c35db8
@ -18,6 +18,7 @@ my $np = Nagios::Plugin->new(
|
||||
. "[ -d|--divisor <divisor> ] "
|
||||
. "[ -m|--metadata <content> ] "
|
||||
. "[ -T|--contenttype <content-type> ] "
|
||||
. "[ --cacert ] "
|
||||
. "[ --client-cert ] "
|
||||
. "[ --private-key ] "
|
||||
. "[ --ignoressl ] "
|
||||
@ -95,6 +96,12 @@ $np->add_arg(
|
||||
help => "-T, --contenttype application/json \n "
|
||||
. "Content-type accepted if different from application/json ",
|
||||
);
|
||||
$np->add_arg(
|
||||
spec => 'cacert|C=s',
|
||||
default => '',
|
||||
help => "-T, --cacert /foo/ca.crt \n "
|
||||
. "Ca certificate ",
|
||||
);
|
||||
$np->add_arg(
|
||||
spec => 'client-cert|J=s',
|
||||
default => '',
|
||||
@ -130,6 +137,9 @@ $ua->timeout($np->opts->timeout);
|
||||
if ($np->opts->ignoressl) {
|
||||
$ua->ssl_opts(verify_hostname => 0, SSL_verify_mode => 0x00);
|
||||
}
|
||||
if ($np->opts->{'cacert'}) {
|
||||
$ua->ssl_opts(SSL_ca_file => $np->opts->{'cacert'});
|
||||
}
|
||||
if ($np->opts->httpclientcert) {
|
||||
$ua->ssl_opts(
|
||||
SSL_cert_file => $np->opts->httpclientcert,
|
||||
|
Loading…
Reference in New Issue
Block a user