選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #!/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"
|