server-tools !?!
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
271 B

  1. #!/bin/bash
  2. # Starting certbot deploy_hook
  3. echo "Starting certbot deploy_hook ..."
  4. # Reload nginx
  5. nginx -t && service nginx reload
  6. # Reload postfix
  7. service postfix reload
  8. # Reload dovecot
  9. service dovecot reload
  10. # End deploy_hook
  11. echo "End certbot deploy_hook process"