summaryrefslogtreecommitdiff
path: root/extra/ifplugd/ifplugd.action
blob: 23b74c60d56e970338de6913780e3631008c2bc3 (plain)
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
#!/bin/sh
#
# ifplugd.action script for Arch Linux

. /etc/rc.conf
. /etc/rc.d/functions

plugscript(){ #argumets are ifup|ifdown, interface_name
  for script in /etc/ifplugd/$1.d/*.sh; do
    [ -x $script ] && $script $2
  done
  return 0
}

case "$2" in
  up)
    /etc/rc.d/network ifup $1
    plugscript ifup $1
  ;;
  down)
    plugscript ifdown $1
    /etc/rc.d/network ifdown $1
  ;;
  *)
    echo "Wrong arguments" > /dev/stderr
  ;;
esac

exit 1