cdist/cdist/conf/type/__letsencrypt_cert/explorer/certificate-is-test

15 lines
242 B
Bash
Executable File

#!/bin/sh -e
certbot_path=$("${__type_explorer}/certbot-path")
if [ -n "${certbot_path}" ]
then
if certbot certificates --cert-name "${__object_id:?}" | \
grep -q 'INVALID: TEST_CERT'; then
echo yes
else
echo no
fi
else
echo no
fi