No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_cron-daily_letsencrypt-renew 429B

12345678
  1. #!/bin/bash
  2. set -o errexit
  3. # Renew all live certificates with LetsEncrypt. This needs to run at least
  4. # once every three months, but recommended frequency is once a day.
  5. /root/letsencrypt/letsencrypt-auto renew -q -c /etc/letsencrypt/cli.conf \
  6. --pre-hook="find /etc/letsencrypt/prerenew/ -maxdepth 1 -type f -executable -exec {} \;" \
  7. --post-hook="find /etc/letsencrypt/postrenew/ -maxdepth 1 -type f -executable -exec {} \;"