Create the tls directory structure only if it doesn't exist

master
Carlos Mogas da Silva před 6 roky
rodič a2748b447d
revize d7c9b6a290
  1. 14
      haraka.sh

@ -9,11 +9,13 @@ fi
echo $HOSTNAME > /haraka/config/me
# Get and install certificates from Let's Encrypt
certbot certonly -n --agree-tos -d "$HOSTNAME"
mkdir -p /haraka/config/tls
cd /haraka/config/tls
ln -s /etc/letsencrypt/live/$HOSTNAME/privkey.pem tls-key.pem
ln -s /etc/letsencrypt/live/$HOSTNAME/fullchain.pem tls-cert.pem
cd -
if [ ! -f /haraka/config/tls ]; then
certbot certonly -n --agree-tos -d "$HOSTNAME" --standalone --preferred-challenges http
mkdir -p /haraka/config/tls
cd /haraka/config/tls
ln -s /etc/letsencrypt/live/$HOSTNAME/privkey.pem tls-key.pem
ln -s /etc/letsencrypt/live/$HOSTNAME/fullchain.pem tls-cert.pem
cd -
fi
haraka -c /haraka

Načítá se…
Zrušit
Uložit