ansible-roles/certbot/files/hooks/dovecot.sh

33 lines
829 B
Bash
Raw Normal View History

2019-09-27 00:13:30 +02:00
#!/bin/sh
2019-09-27 10:15:33 +02:00
readonly PROGNAME=$(basename "$0")
2019-09-27 00:13:30 +02:00
readonly VERBOSE=${VERBOSE:-"0"}
readonly QUIET=${QUIET:-"0"}
error() {
>&2 echo "${PROGNAME}: $1"
exit 1
}
debug() {
if [ "${VERBOSE}" = "1" ] && [ "${QUIET}" != "1" ]; then
>&2 echo "${PROGNAME}: $1"
fi
}
doveconf_bin=$(command -v doveconf)
if [ -n "$(pidof dovecot)" ] && [ -n "${doveconf_bin}" ]; then
if ${doveconf_bin} | grep -E "^ssl_cert[^_]" | grep -q "letsencrypt"; then
2019-09-27 10:15:33 +02:00
if ${doveconf_bin} > /dev/null 2>&1; then
2019-09-27 00:13:30 +02:00
debug "Dovecot detected... reloading"
systemctl reload dovecot
else
error "Dovecot config is broken, you must fix it !"
2019-09-27 00:13:30 +02:00
fi
else
debug "Dovecot doesn't use Let's Encrypt certificate. Skip."
2019-09-27 00:13:30 +02:00
fi
else
debug "Dovecot is not running or missing. Skip."
2019-09-27 00:13:30 +02:00
fi