server-tools !?!
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

18 righe
383 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. # Copy SSL cert and reload slapd
  11. cp /etc/letsencrypt/live/allella.io/*.pem /etc/ldap/tls/
  12. service slapd restart
  13. # End deploy_hook
  14. echo "End certbot deploy_hook process"