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.
|
- #!/bin/bash
-
- # Starting certbot deploy_hook
- echo "Starting certbot deploy_hook ..."
-
- # Reload nginx
- nginx -t && service nginx reload
- # Reload postfix
- service postfix reload
- # Reload dovecot
- service dovecot reload
-
- # End deploy_hook
- echo "End certbot deploy_hook process"
|