148 lines
3.3 KiB
Bash
148 lines
3.3 KiB
Bash
#!/bin/bash
|
|
|
|
path="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
#############
|
|
# variables
|
|
acme_dir=/srv/certs/acme-challenge/.well-known/acme-challenge
|
|
opt_dir=/srv/certs/.opt
|
|
account_key=$opt_dir/account.key
|
|
acme_tiny=$opt_dir/acme_tiny.py
|
|
openssl_conf=$opt_dir/openssl.conf
|
|
|
|
#############
|
|
# script
|
|
|
|
|
|
# stop script if receive SIGINT (ctrl-c)
|
|
trap "exit" INT
|
|
|
|
#print starting date
|
|
echo "Cert renew script: $(date)"
|
|
|
|
# check if needed files are provided
|
|
if [ $# -eq 0 ]; then
|
|
echo "No arguments provided."
|
|
echo "Usage: $0 [folder]"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$opt_dir" ]; then
|
|
echo "opt dir doesn't exists!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$acme_dir" ]; then
|
|
echo "acme directory ($acme_dir) doesn't exists!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -f "$account_key" ]; then
|
|
echo "Account Key doesn't exists!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -f "$acme_tiny" ]; then
|
|
echo "Python script acme_tiny.py is missing. Downloading... "
|
|
wget -qo $acme_tiny https://raw.githubusercontent.com/diafygi/acme-tiny/4.0.4/acme_tiny.py
|
|
if [ $? != 0 ]; then
|
|
echo "Could not download acme_tiny.py script."
|
|
rm -rf $acme_tiny
|
|
exit 1
|
|
fi
|
|
echo "Finished"
|
|
fi
|
|
|
|
acme_dir=${acme_dir%/}
|
|
opt_dir=${opt_dir%/}
|
|
|
|
# check if python is installed
|
|
command -v python >/dev/null 2>&1 || { echo >&2 "I require python but it's not installed. Aborting."; exit 1; }
|
|
|
|
counter=0
|
|
|
|
for arg in "$@"
|
|
do
|
|
arg="$path/${arg%/}"
|
|
|
|
if [ ! -d "$arg" ]; then
|
|
echo "Folder $arg doesn't exists!"
|
|
continue
|
|
fi
|
|
|
|
if [ ! -f "$arg/domain.conf" ]; then
|
|
echo "Configuration file doen't exists!"
|
|
continue
|
|
fi
|
|
|
|
# load configuration variables
|
|
source "$arg/domain.conf"
|
|
|
|
|
|
# check domain.conf variables
|
|
if [ -z "$NAME" ]; then
|
|
echo "No name given for domain \"$arg\"".
|
|
continue
|
|
fi
|
|
|
|
if [ ${#DOMAINS[@]} -eq 0 ]; then
|
|
echo "No domains given for \"$NAME\"."
|
|
continue
|
|
fi
|
|
|
|
|
|
# domain key
|
|
key="$arg/$NAME.key"
|
|
|
|
if [ ! -f "$key" ]; then
|
|
echo "Domain key doesn't exists. Generating..."
|
|
openssl genrsa 4096 > "$key"
|
|
#openssl ecparam -out "$key" -name secp384r1 -genkey
|
|
fi
|
|
|
|
# domain csr
|
|
csr="$arg/$NAME.csr"
|
|
|
|
if [ ! -f "$csr" ]; then
|
|
echo "Domain csr file doesn't exists. Generating..."
|
|
if [ ${#DOMAINS[@]} -eq 1 ]; then
|
|
# single domain
|
|
openssl req -new -sha256 -key "$key" -subj "/CN=$DOMAINS" > "$csr"
|
|
else
|
|
# multi domain
|
|
# expand domain array with ",DNS:"
|
|
read -r DOMAINS < <( printf "%s,DNS:" "${DOMAINS[@]:0:$((${#DOMAINS[@]} - 1))}"; echo "${DOMAINS[@]: -1}"; )
|
|
san_string="[SAN]\nsubjectAltName=DNS:$DOMAINS"
|
|
openssl req -new -sha256 -key "$key" -subj "/" -reqexts SAN -config <(cat "$openssl_conf" <(printf "$san_string")) > "$csr"
|
|
fi
|
|
fi
|
|
|
|
if [ $? != 0 ]; then
|
|
echo "Creating csr/key files FAILED for \"$NAME\"!"
|
|
continue
|
|
fi
|
|
|
|
# get certificate
|
|
python "$acme_tiny" --quiet --account-key "$account_key" --csr "$csr" --acme-dir "$acme_dir" > "$arg/tmp.pem"
|
|
|
|
if [ $? != 0 ]; then
|
|
rm -rf $arg/tmp.pem
|
|
echo "Getting certificate for \"$NAME\" FAILED!"
|
|
continue
|
|
fi
|
|
|
|
if [ -s "$arg/tmp.pem" ]; then
|
|
mv -f "$arg/tmp.pem" "$arg/$NAME.pem"
|
|
else
|
|
echo "New certificate for \"$NAME\" doesn't exists or is empty"
|
|
rm -rf "$arg/tmp.pem"
|
|
continue
|
|
fi
|
|
|
|
echo "Certificate for \"$NAME\" successfully created!"
|
|
counter=$((counter+1))
|
|
|
|
done
|
|
|
|
echo "$counter new certificates created!"
|