]> git.pld-linux.org Git - projects/rc-scripts.git/blame - lib/ifdown-br
If an iface type is specified NEVER override it
[projects/rc-scripts.git] / lib / ifdown-br
CommitLineData
de1fc6ce
JR
1#!/bin/sh
2#
3# ifdown-br - bridge configuration script
fdc764ae 4# Copyright (C) 2000 Arkadiusz Miśkiewicz <misiek@pld-linux.org>
de1fc6ce
JR
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19#
de1fc6ce
JR
20#
21PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
23. /etc/sysconfig/network
24. /etc/rc.d/init.d/functions
f67ce454 25. /lib/rc-scripts/functions.network
de1fc6ce
JR
26
27CONFIG=$1
28source_config
29
30if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
5e6dfc29 31 exit
de1fc6ce
JR
32fi
33
34if [ ! -x /sbin/brctl ]; then
5e6dfc29
JR
35 nls "%s is missing. Can't continue." "/sbin/brctl"
36 exit 1
de1fc6ce
JR
37fi
38
39# set all major variables
40setup_ip_param
41
42# set device down and forget all addresses
76cdd93f 43for device in ${BRIDGE_DEVS}; do
2450b5fc 44 LC_ALL=C ip addr flush dev ${device} 2>&1 | grep -v "Nothing to flush"
5e6dfc29 45 brctl delif ${DEVICE} ${device}
de1fc6ce
JR
46done
47
76cdd93f 48ip link set ${DEVICE} down
de1fc6ce 49brctl delbr ${DEVICE}
This page took 0.070164 seconds and 4 git commands to generate.