|
#!/bin/sh
|
|
|
|
RUTA=http://desarrollo.educarex.es/linex/projects/servidoressecundaria/repository/entry/limitar-https/trunk/
|
|
FICHERO=deny_https
|
|
|
|
# Descarga el script para tratar el tráfico https en los IES
|
|
wget -q -O $FICHERO $RUTA/$FICHERO?format=raw
|
|
|
|
chmod +x $FICHERO
|
|
mv $FICHERO /etc/init.d/
|
|
|
|
#update-rc.d $FICHERO defaults (nivel 20)
|
|
if [ -e /etc/init.d/deny_https ] && [ -e /etc/rc2.d/S99deny_https ]; then
|
|
update-rc.d -f $FICHERO remove 2>&1 /dev/null
|
|
fi
|
|
|
|
update-rc.d $FICHERO start 31 2 3 4 5 . stop 31 0 1 6 .
|
|
|
|
# Descarga el fichero con webs iniciales a cortar
|
|
FICHERO=deny_https.all
|
|
wget -q -O $FICHERO $RUTA/$FICHERO?format=raw
|
|
if [ -e $FICHERO ]; then
|
|
cp $FICHERO /etc/network/deny_https.ies
|
|
fi
|
|
|
|
/etc/init.d/deny_https start
|
|
|