#!/bin/bash
# $Id: ifplugd.init.in 86 2004-01-26 15:34:24Z lennart $

# * List of changes
#
# Timestamp                            Author                                          Description
# --
# Wed Jun 29 14:05:56 2016 +0200       Steven Dorigotti - Exor International Srl       Handle wired interfaces only
# Tue Jan 31 21:24:35 2017 +0100       Steven Dorigotti - Exor International Srl       Support bridging of networking interfaces
# Mon Sep 3 15:30:11 2018 +0200        Nicolo Ongaro - Exor International Srl          Check if ifplugd is already running before starting
# Fri May 8 18:23:15 2020 +0200        Steven Dorigotti - Exor International Srl       Manage also SE* (in addition to eth*)
# Mon May 11 17:38:43 2020 +0200       Steven Dorigotti - Exor International Srl       Remove managed switch interfaces

# This file is part of ifplugd.
#
# ifplugd is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# ifplugd is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with ifplugd; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.

# ifplugd      Brings up/down network automatically
#
# chkconfig: 2345 11 89
# description: Brings networks interfaces up and down automatically when \
#              the cable is removed / inserted
#
# processname: /usr/sbin/ifplugd
# config: /etc/ifplugd/ifplugd.conf

### BEGIN INIT INFO
# Provides:          ifplugd
# Required-Start:    $network
# X-UnitedLinux-Should-Start:
# Required-Stop:     $network
# X-UnitedLinux-Should-Stop: $
# Default-Start:     3 5
# Default-Stop:      0 1 2 6
# Short-Description: ifplugd daemon
# Description:       Start ifplugd
### END INIT INFO

CFG=/etc/ifplugd/ifplugd.conf

IFPLUGD=/usr/sbin/ifplugd
test -x $IFPLUGD || exit 0

if [ `id -u` != "0" ] && [ "$1" = "start" -o "$1" = "stop" ] ; then
  echo "You must be root to start, stop or restart ifplugd."
  exit 1
fi

[ -f $CFG ] && . $CFG

VERB="$1"
shift

[ "x$*" != "x" ] && INTERFACES="$*"

# with auto detection, ifplugd manages ethernet and main switch port (ETOP707T)
[ "x$INTERFACES" = "xauto" ] && INTERFACES="`cd /sys/class/net/ && ls -d eth* SE* 2>/dev/null`"
# remove managed switch interfaces
echo $INTERFACES | grep -q SE01 && INTERFACES=${INTERFACES/eth1/}

case "$VERB" in
    start)
	DISBUZOPT=$(sys_params -r -l "options/buzzer/disable_eth" 2>/dev/null)
	if [ "$DISBUZOPT" == "true" ]; then
                DISBUZOPT=" -b "
        else
                DISBUZOPT=""
        fi
        echo -n "Starting Network Interface Plugging Daemon:"
        for IF in $INTERFACES ; do
            A="`eval echo \$\{ARGS_${IF}\}`"
            [ -z "$A" ] && A="$ARGS"
            $IFPLUGD $DISBUZOPT -c -i $IF &>/dev/null
            [ $? -ne 0 ] && $IFPLUGD -i $IF $A $DISBUZOPT
            echo -n " $IF"
        done
        echo "."
        ;;
    stop)
        echo -n "Stopping Network Interface Plugging Daemon:"
        for IF in $INTERFACES ; do 
            $IFPLUGD -k -W -i $IF
            echo -n " $IF"
        done
        echo "."
        ;;
    status)
        for IF in $INTERFACES ; do
            $IFPLUGD -c -i $IF
        done
        ;;
    suspend)
        echo -n "Suspending Network Interface Plugging Daemon:"
        for IF in $INTERFACES ; do
            $IFPLUGD -S -i $IF
            echo -n " $IF"
        done
        echo "."    
        ;;
    resume)
        echo -n "Resuming Network Interface Plugging Daemon:"
        for IF in $INTERFACES ; do
            $IFPLUGD -R -i $IF
            echo -n " $IF"
        done
        echo "."    
        ;;
    force-reload|restart)
        $0 stop $INTERFACES
        sleep 3
        $0 start $INTERFACES
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|force-reload|status|suspend|resume}"
        exit 1
esac

exit 0
