]> git.pld-linux.org Git - projects/rc-scripts.git/blame - lib/ifdown-vlan
- devtmpfs is madatory for udev >= 176
[projects/rc-scripts.git] / lib / ifdown-vlan
CommitLineData
a6c22d3d
AM
1#!/bin/sh
2#
3# ifdown-vlan - Virtual LAN configuration script
fdc764ae 4# Copyright (C) 2001 Arkadiusz Miśkiewicz <misiek@pld-linux.org>
a6c22d3d
AM
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#
ec8b15cb 20# $Id$
a6c22d3d
AM
21#
22PATH=/sbin:/usr/sbin:/bin:/usr/bin
23
f67ce454 24cd /lib/rc-scripts
a6c22d3d
AM
25. /etc/sysconfig/network
26. /etc/rc.d/init.d/functions
f67ce454 27. /lib/rc-scripts/functions.network
a6c22d3d
AM
28
29CONFIG=$1
30source_config
31
32if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
5e6dfc29 33 exit 0
a6c22d3d
AM
34fi
35
a6c22d3d
AM
36# set all major variables
37setup_ip_param
38
39ip link set ${DEVICE} down
2450b5fc 40LC_ALL=C ip addr flush dev ${DEVICE} 2>&1 | grep -v "Nothing to flush"
966487ee 41
9080d472 42if LC_ALL=C ip link help 2>&1 | grep -q del; then
966487ee
TP
43 /sbin/ip link del ${DEVICE}
44elif [ -x /sbin/vconfig ]; then
45 /sbin/vconfig rem ${DEVICE}
46else
47 nls "/sbin/vconfig or iproute2 with vlan support is missing. Can't continue."
48 exit 1
49fi
50
a6c22d3d
AM
51RESULT=$?
52
53exit $RESULT
This page took 0.084688 seconds and 4 git commands to generate.