Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12345678910 |
- #!/bin/bash
-
- # abort script on failed command
- set -o errexit
-
- # Renew all live certificates with LetsEncrypt. This needs to run at least
- # once every three months, but recommended frequency is once a day.
- certbot renew -q -c /etc/letsencrypt/cli.conf \
- --pre-hook="find /etc/letsencrypt/prerenew/ -maxdepth 1 -type f -executable -exec {} \;" \
- --post-hook="find /etc/letsencrypt/postrenew/ -maxdepth 1 -type f -executable -exec {} \;"
|