1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
#!/bin/sh
# $Id: ifplugd.init.in 43 2003-09-13 11:25:11Z lennart $
# 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.
### BEGIN INIT INFO
# Provides: ifplugd
# Required-Start: $network $remote_fs
# Required-Stop: $network $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Brings up/down network automatically
# Description: Brings networks interfaces up and down automatically when
# the cable is removed / inserted
### END INIT INFO
CFG=/etc/default/ifplugd
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
[ $# -ne 0 ] && INTERFACES="$@"
[ "x$INTERFACES" = "xauto" -o "x$INTERFACES" = "xall" ] && INTERFACES="`cat /proc/net/dev | awk '{ print $1 }' | egrep '^(eth|wlan)' | cut -d: -f1`"
case "$VERB" in
start)
echo -n "Starting Network Interface Plugging Daemon:"
for IF in $INTERFACES ; do
grep --quiet $IF /proc/net/dev || continue
IF1=$(echo $IF | sed "s/-/_/")
A=$(eval echo \$\{ARGS_${IF1}\})
[ -z "$A" ] && A="$ARGS"
$IFPLUGD -i $IF $A
echo -n " $IF"
done
echo "."
;;
stop)
echo -n "Stopping Network Interface Plugging Daemon:"
for IF in $INTERFACES ; do
grep --quiet $IF /proc/net/dev || continue
$IFPLUGD -k --wait-on-kill -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
grep --quiet $IF /proc/net/dev || continue
$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
|