15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
_ETHER=trunk0
|
||
|
_BRIDGE=bridge0
|
||
|
|
||
|
# Let the environment over-ride this
|
||
|
[ "$BRIDGE" ] || BRIDGE=${_BRIDGE}
|
||
|
[ "$ETHER" ] || ETHER=${_ETHER}
|
||
|
|
||
|
if test `id -u` -ne 0; then
|
||
|
SUDO=sudo
|
||
|
fi
|
||
|
|
||
|
$SUDO ifconfig $brif del $1 > /dev/null 2>&1
|