Subversion Repositories ALCASAR

Rev

Rev 2454 | Rev 2879 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log

#!/bin/bash
# $Id: alcasar-https.sh 2592 2018-08-18 22:09:42Z rexy $

# alcasar-dhcp.sh
# by Rexy
# This script is distributed under the Gnu General Public License (GPL)

# active ou désactive le chiffrement sur les flux d'authentification
# enable or disable encryption on authentication flows

SED="/bin/sed -i"
CONF_FILE="/usr/local/etc/alcasar.conf"
CHILLI_CONF_FILE="/etc/chilli.conf"
HOSTNAME=$(grep ^HOSTNAME= $CONF_FILE | cut -d'=' -f2)
DOMAIN=$(grep ^DOMAIN= $CONF_FILE | cut -d'=' -f2)

usage="Usage: alcasar-https.sh {--on | -on} | {--off | -off}"
nb_args=$#
args=$1
if [ $nb_args -eq 0 ]
then
        echo "$usage"
        exit 1
fi

case $args in
        -\? | -h* | --h*)
                echo "$usage"
                exit 0
                ;;
        --off | -off)   # disable HTTPS
                $SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=off?" $CONF_FILE
                $SED "s?^HTTPS_CHILLI=.*?HTTPS_CHILLI=off?" $CONF_FILE
                $SED "s?^uamserver.*?uamserver\thttp://$HOSTNAME.$DOMAIN/intercept.php?" $CHILLI_CONF_FILE
                $SED "s?^redirssl.*?#&?" $CHILLI_CONF_FILE
                $SED "s?^uamuissl.*?#&?" $CHILLI_CONF_FILE
                /usr/bin/systemctl restart chilli
                rm -f /etc/lighttpd/vhosts.d/alcasar.conf
                ln -s /etc/lighttpd/vhosts.d/alcasar-without-ssl.conf /etc/lighttpd/vhosts.d/alcasar.conf
                /usr/bin/systemctl restart lighttpd
                ;;
        --on | -on)     # enable HTTPS
                $SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=on?" $CONF_FILE
                $SED "s?^uamserver.*?uamserver\thttps://$HOSTNAME.$DOMAIN/intercept.php?" $CHILLI_CONF_FILE
                $SED "s?^#redirssl.*?redirssl?" $CHILLI_CONF_FILE
                $SED "s?^#uamuissl.*?uamuissl?" $CHILLI_CONF_FILE
                /usr/bin/systemctl restart chilli
                rm -f /etc/lighttpd/vhosts.d/alcasar.conf
                ln -s /etc/lighttpd/vhosts.d/alcasar-with-ssl.conf /etc/lighttpd/vhosts.d/alcasar.conf
                /usr/bin/systemctl restart lighttpd
                ;;
        *)
                echo "Argument inconnu : $1"
                echo "$usage"
                exit 1
                ;;
esac