aports/main/vlan/mvlan.post-down
2012-03-15 13:35:13 +00:00

15 lines
294 B
Bash

#!/bin/sh
case "$IFACE" in
*#[0-9]*)
MVLANID="${IFACE##*#}"
IF_MVLAN_RAW_DEVICE="${IFACE%#*}"
;;
*)
;;
esac
if [ -n "$IF_MVLAN_RAW_DEVICE" ]
then
# Kernel new style configuration
ip link del link dev "$IFACE"
fi