Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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