説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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 {} \;"