#!/bin/sh

#------------------------------------------------------------------------
# bastion - Restart bastion on PPPOE event
# Copyright © 2014 Pôle de compétences EOLE <eole@ac-dijon.fr>
#
# License CeCILL:
#  * in french: http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html
#  * in english http://www.cecill.info/licences/Licence_CeCILL_V2-en.html

PATH=/sbin:/bin:/usr/sbin:/usr/bin
if [ -x /etc/init.d/bastion ]
then
    invoke-rc.d bastion restart
fi
