Check if certbot exists before using it. Fixes #685.
This commit is contained in:
parent
282647a88c
commit
a627247908
3 changed files with 23 additions and 7 deletions
|
@ -1,4 +1,8 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
certbot certificates --cert-name "${__object_id:?}" | grep ' Domains: ' | \
|
certbot_path=$("${__type_explorer}/certbot-path")
|
||||||
|
if [ -n "${certbot_path}" ]
|
||||||
|
then
|
||||||
|
certbot certificates --cert-name "${__object_id:?}" | grep ' Domains: ' | \
|
||||||
cut -d ' ' -f 6- | tr ' ' '\n'
|
cut -d ' ' -f 6- | tr ' ' '\n'
|
||||||
|
fi
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
if certbot certificates | grep -q " Certificate Name: ${__object_id:?}$"; then
|
certbot_path=$("${__type_explorer}/certbot-path")
|
||||||
|
if [ -n "${certbot_path}" ]
|
||||||
|
then
|
||||||
|
if certbot certificates | grep -q " Certificate Name: ${__object_id:?}$"; then
|
||||||
echo yes
|
echo yes
|
||||||
|
else
|
||||||
|
echo no
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo no
|
echo no
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
if certbot certificates --cert-name "${__object_id:?}" | \
|
certbot_path=$("${__type_explorer}/certbot-path")
|
||||||
|
if [ -n "${certbot_path}" ]
|
||||||
|
then
|
||||||
|
if certbot certificates --cert-name "${__object_id:?}" | \
|
||||||
grep -q 'INVALID: TEST_CERT'; then
|
grep -q 'INVALID: TEST_CERT'; then
|
||||||
echo yes
|
echo yes
|
||||||
|
else
|
||||||
|
echo no
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo no
|
echo no
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue