Wrapper evoacme

Used by Quai13. Will be redo properly by Nicolas ;)
This commit is contained in:
Benoît S. 2019-06-04 16:33:07 +02:00
parent a3c67afb2a
commit 51b6112e71
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#!/bin/bash
vhost=$1
dryrun=${2:-no}
echo "$0 $@ invocated at $(date -R)" >> /var/log/evoacme-wrapper.log
if [[ -f /etc/letsencrypt/${vhost}/live/fullchain.pem ]]; then
echo "Le certificat est déjà en place ! Ouvrir un ticket si il faut ajouter un domaine au certificat."
openssl x509 -text -in /etc/letsencrypt/${vhost}/live/fullchain.pem | grep -e etc -e CN= -e DNS: -e After;
exit 1
fi
if [[ ! -f /etc/ssl/requests/${vhost}.csr ]]; then
source /usr/share/scripts/evoadmin/evoacme.sh $1
fi
if [[ "$dryrun" == "dry-run" ]]; then
export VERBOSE=1
export DRY_RUN=1
echo "Lancement en dry-run"
/usr/local/sbin/evoacme $vhost
else
export VERBOSE=1
/usr/local/sbin/evoacme $vhost
fi
grep -q "*:80>" /etc/apache2/sites-enabled/${vhost}.conf
if [ $? -eq 0 ] ; then
sed -i 's@<VirtualHost \*:80>@<VirtualHost \*:80 \*:443>@' /etc/apache2/sites-enabled/${vhost}.conf
sed -i "s@</VirtualHost>@Include /etc/apache2/ssl/$vhost.conf\n</VirtualHost>@" /etc/apache2/sites-enabled/${vhost}.conf
fi

13
scripts/evoacme.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
in_login="$1"
domain=$(bash /usr/share/scripts/evoadmin/web-add.sh list-vhost $in_login | cut -d ':' -f3)
alias=$(bash /usr/share/scripts/evoadmin/web-add.sh list-vhost $in_login | cut -d ':' -f4 | tr ',' ' ')
echo $domain $alias | /usr/local/sbin/make-csr "$in_login"
if [[ ${PIPESTATUS[1]} != 0 ]]; then
echo "Erreur avec echo $domain $alias | /usr/local/sbin/make-csr $in_login"
return 1
fi
return 0