32 lines
981 B
Bash
32 lines
981 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -f /var/run/alternc-ssl/generate_certif_alias
|
||
|
|
||
|
# Launched by incron when /tmp/generate_certif_alias exists
|
||
|
# regenerate the list of global aliases used by Comodo for certificate ownership validation
|
||
|
# FIXME: how do we lock that, ensuring we don't launch this more than once ?
|
||
|
APACHECONF=/etc/apache2/conf.d/alternc-ssl_cert-alias.conf
|
||
|
TMP=/tmp/alternc-ssl_cert-alias_${$}.tmp
|
||
|
FILEDIR=/var/lib/alternc/ssl-cert-alias
|
||
|
|
||
|
|
||
|
rm -f "$TMP"
|
||
|
mkdir -p "$FILEDIR"
|
||
|
|
||
|
echo "# this file is autogenerated from /usr/lib/alternc/ssl_alias_manager.sh" >$TMP
|
||
|
echo "# Please do not edit, your changes will be overwritten" >>$TMP
|
||
|
|
||
|
mysql --defaults-file=/etc/alternc/my.cnf --skip-column-names -B -e "SELECT name,content FROM certif_alias;" | while read name content
|
||
|
do
|
||
|
echo "alias /$name ${FILEDIR}/${name}" >>$TMP
|
||
|
echo "$content" >"${FILEDIR}/${name}"
|
||
|
done
|
||
|
if ! diff -q "$TMP" "$APACHECONF"
|
||
|
then
|
||
|
mv -f "$TMP" "$APACHECONF"
|
||
|
service apache2 reload
|
||
|
else
|
||
|
rm -f "$TMP"
|
||
|
fi
|
||
|
|