New command: check_ssl_cert

This commit is contained in:
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent 846a613121
commit e7c1b630ad

View File

@ -0,0 +1,34 @@
---
description: |
This is the `check_by_ssh` Nagios plugin, available e.g. in `/usr/lib/nagios/plugins/`.
functions:
command:
- code: |
COMMAND='/usr/bin/id'
OUTPUT="output_file"
TF=$(mktemp)
echo "$COMMAND | tee \"$OUTPUT\"" > $TF
chmod +x $TF
check_ssl_cert --curl-bin "$TF" -H example.com # example.com must provide TLS
cat $OUTPUT
suid:
- code: |
COMMAND='/usr/bin/id'
OUTPUT="output_file"
umask 022
TF=$(mktemp)
echo "$COMMAND | tee \"$OUTPUT\"" > $TF
chmod +x $TF
./check_ssl_cert --curl-bin "$TF" -H example.com # example.com must provide TLS
cat $OUTPUT
sudo:
- code: |
COMMAND='/usr/bin/id'
OUTPUT="output_file"
umask 022
TF=$(mktemp)
echo "$COMMAND | tee \"$OUTPUT\"" > $TF
chmod +x $TF
sudo check_ssl_cert --curl-bin "$TF" -H example.com # example.com must provide TLS
cat $OUTPUT
---