]> git.pld-linux.org Git - projects/rc-scripts.git/blob - lib/ifup-bond
Create bondX interfaces when ifcfg-bondX is called with ifup and interface doesn...
[projects/rc-scripts.git] / lib / ifup-bond
1 #!/bin/sh
2 #
3 #    ifup-bond - Bonding configuration script
4 #    Copyright (C) 2019 Arkadiusz Miƛkiewicz <misiek@pld-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 cd /lib/rc-scripts
24 . /etc/sysconfig/network
25 . /etc/rc.d/init.d/functions
26 . /lib/rc-scripts/functions.network
27
28 CONFIG=$1
29 source_config
30
31 if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
32         exit
33 fi
34
35 . /etc/sysconfig/network
36
37 # set all major variables
38 setup_ip_param
39
40 if [ ! -d "/sys/class/net/${DEVICE}" ]; then
41         ip link add "${DEVICE}" type bond
42 fi
This page took 0.162211 seconds and 3 git commands to generate.