]> TLD Linux GIT Repositories - rc-scripts.git/blob - lib/ifdown-bond
- disable lock checks (happens on LUKS2 and fails during system boot)
[rc-scripts.git] / lib / ifdown-bond
1 #!/bin/sh
2 #
3 #    ifdown-bond - bonding configuration script
4 #    Copyright (C) 2014 Marcin Krol <hawk@tld-linux.org>
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 #
20 #
21 PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
23 . /etc/sysconfig/network
24 . /etc/rc.d/init.d/functions
25 . /lib/rc-scripts/functions.network
26
27 CONFIG=$1
28 source_config
29
30 if [ "x${2}" = "xboot" ] && is_no "${ONBOOT}"; then
31         exit
32 fi
33
34 # set all major variables
35 setup_ip_param
36
37 # forget all addresses
38 LC_ALL=C ip addr flush dev ${DEVICE} 2>&1 | grep -v "Nothing to flush"
39
40 # release slave devices
41 for SLAVE_DEV in $(cat /sys/class/net/${DEVICE}/bonding/slaves 2>/dev/null); do
42         echo "-${SLAVE_DEV}" > /sys/class/net/${DEVICE}/bonding/slaves
43 done
44
45 # bring bonding master down
46 ip link set ${DEVICE} down
47
48 # remove bonding master
49 if grep -wq "${DEVICE}" /sys/class/net/bonding_masters; then
50         echo "-${DEVICE}" > /sys/class/net/bonding_masters
51         if [ $? -ne 0 ]; then
52                 exit 1
53         fi
54 fi