diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-30 13:06:10 +0300 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-07-28 22:42:06 +0000 |
commit | 876b5b45a320cbd4670ff4ede3b4972eef2ea6d6 (patch) | |
tree | a6170a9d980700af602fad77ba6d3e42ae4140c9 | |
parent | 3ec6f34ef077e544118ece2f59b51689d034cf11 (diff) | |
download | pleroma-876b5b45a320cbd4670ff4ede3b4972eef2ea6d6.tar.gz |
OTP Release install docs: Remove --dry-run in cron certbot command
-rw-r--r-- | docs/installation/otp_en.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/installation/otp_en.md b/docs/installation/otp_en.md index fa71f23e1..9b851e395 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -207,7 +207,7 @@ certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ -- # Add it to the daily cron echo '#!/bin/sh -certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --dry-run --post-hook "systemctl reload nginx" +certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --post-hook "systemctl reload nginx" ' > /etc/cron.daily/renew-pleroma-cert chmod +x /etc/cron.daily/renew-pleroma-cert @@ -228,7 +228,7 @@ certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ -- # Add it to the daily cron echo '#!/bin/sh -certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --dry-run --post-hook "rc-service nginx reload" +certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --post-hook "rc-service nginx reload" ' > /etc/periodic/daily/renew-pleroma-cert chmod +x /etc/periodic/daily/renew-pleroma-cert |