blob: 500e60ae61c9d90a7b4cf14a42c9cc1eb3b6393a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# We get two "add" events for hostap cards due to wifi0
echo "$INTERFACE" | grep -q wifi && exit 0
# udevd does clearenv(). Export shell PATH to children.
export PATH
# if this interface has an entry in /etc/network/interfaces, let ifupdown
# handle it
if grep -q "iface \+$INTERFACE" /etc/network/interfaces; then
case $ACTION in
add)
ip addr show dev "$INTERFACE" up | grep -q "$INTERFACE" || ifup $INTERFACE
;;
remove)
ifdown $INTERFACE
;;
esac
exit 0
fi
|