ansible-roles/letsencrypt-acme-sh-client/files/acme-sh-cron-script

22 lines
417 B
Plaintext
Raw Normal View History

2018-08-20 19:19:56 +02:00
#!/bin/bash
if [ -f "/etc/default/acme_sh_request_env" ] ; then
. "/etc/default/acme_sh_request_env"
else
exit 1
fi
if [ -f "$ACME_SH_ENV_FILE" ] ; then
. "$ACME_SH_ENV_FILE"
else
exit 1
fi
su - acme -s /bin/bash -c '/usr/local/bin/acme-sh-cron-command'
if [ "$ACME_SH_INSTALL_CERTS" == "True" ] ; then
$ACME_SH_BIN $ACME_SH_INSTALL_CERT_REQUEST > "$ACME_SH_INSTALL_LOG_FILE" 2>&1
fi
exit $?