]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
Create bondX interfaces when ifcfg-bondX is called with ifup and interface doesn...
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 4 Mar 2019 09:32:13 +0000 (10:32 +0100)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 4 Mar 2019 09:43:08 +0000 (10:43 +0100)
lib/Makefile.am
lib/functions.network
lib/ifup-bond [new file with mode: 0755]

index 4b19bc776c4d6d9b0f6d4e5829ac4c5a96098f55..e90f21e4dbb1f61876f331e54922543022447825 100644 (file)
@@ -16,6 +16,7 @@ scripts_SCRIPTS = \
        ifdown-sl \
        ifdown-vlan \
        ifup-aliases \
+       ifup-bond \
        ifup-br \
        ifup-ipx \
        ifup-irda \
index d151b04ecc567879b896fea3eaae1cb4dd6fd9e0..86bc978a61734475637ba2b7e10157ecf7886ea5 100644 (file)
@@ -226,7 +226,7 @@ setup_ip_param ()
 
        # set handling for bridge
        case "$DEVICETYPE" in
-         br|atm|lec|irda|vlan)
+         bond|br|atm|lec|irda|vlan)
                HANDLING=1
                ;;
        esac
diff --git a/lib/ifup-bond b/lib/ifup-bond
new file mode 100755 (executable)
index 0000000..a72da25
--- /dev/null
@@ -0,0 +1,42 @@
+#!/bin/sh
+#
+#    ifup-bond - Bonding configuration script
+#    Copyright (C) 2019 Arkadiusz Miśkiewicz <misiek@pld-linux.org>
+#
+#    This program is free software; you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation; either version 2 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program; if not, write to the Free Software
+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+#
+#
+PATH=/sbin:/usr/sbin:/bin:/usr/bin
+
+cd /lib/rc-scripts
+. /etc/sysconfig/network
+. /etc/rc.d/init.d/functions
+. /lib/rc-scripts/functions.network
+
+CONFIG=$1
+source_config
+
+if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
+       exit
+fi
+
+. /etc/sysconfig/network
+
+# set all major variables
+setup_ip_param
+
+if [ ! -d "/sys/class/net/${DEVICE}" ]; then
+       ip link add "${DEVICE}" type bond
+fi
This page took 0.175493 seconds and 4 git commands to generate.