68 lines
2.9 KiB
Diff
68 lines
2.9 KiB
Diff
--- a/snippets/post_install_network_config 2013-11-11 10:46:45.464341394 +0100
|
|
+++ b/snippets/post_install_network_config 2013-11-12 12:13:34.578812084 +0100
|
|
@@ -43,9 +43,13 @@
|
|
## setup bonding if we have to
|
|
## if using bonding, must have an /ect/modpobe.conf file
|
|
#if $numbondingdevs > 0
|
|
-touch "/etc/modprobe.conf"
|
|
-if [ -f "/etc/modprobe.conf" ]; then
|
|
- echo "options bonding max_bonds=$numbondingdevs" >> /etc/modprobe.conf
|
|
+MODPROBE_CONF="/etc/modprobe.conf"
|
|
+if [ -d "/etc/modprobe.d" ]; then
|
|
+ MODPROBE_CONF="/etc/modprobe.d/post_install_network_config.conf"
|
|
+fi
|
|
+touch "\$MODPROBE_CONF"
|
|
+if [ -f "\$MODPROBE_CONF" ]; then
|
|
+ echo "options bonding max_bonds=$numbondingdevs" >> \$MODPROBE_CONF
|
|
fi
|
|
#end if
|
|
## =============================================================================
|
|
@@ -134,13 +138,13 @@
|
|
## if this is a bonded interface, configure it in modprobe.conf
|
|
#if $bonding.lower() == "master"
|
|
#if $osversion == "rhel4"
|
|
-if [ -f "/etc/modprobe.conf" ]; then
|
|
- echo "install $iname /sbin/modprobe bonding -o $iname $bonding_opts" >> /etc/modprobe.conf.cobbler
|
|
+if [ -f "\$MODPROBE_CONF" ]; then
|
|
+ echo "install $iname /sbin/modprobe bonding -o $iname $bonding_opts" >> \$MODPROBE_CONF.cobbler
|
|
fi
|
|
#else
|
|
## Add required entry to modprobe.conf
|
|
-if [ -f "/etc/modprobe.conf" ]; then
|
|
- echo "alias $iname bonding" >> /etc/modprobe.conf.cobbler
|
|
+if [ -f "\$MODPROBE_CONF" ]; then
|
|
+ echo "alias $iname bonding" >> \$MODPROBE_CONF.cobbler
|
|
fi
|
|
#end if
|
|
#end if
|
|
@@ -150,11 +154,11 @@
|
|
IFNAME=\$(ip -o link | grep -i '$mac' | sed -e 's/^[0-9]*: //' -e 's/:.*//')
|
|
## Rename this interface in modprobe.conf
|
|
## FIXME: if both interfaces startwith eth this is wrong
|
|
-if [ -f "/etc/modprobe.conf" ] && [ \$IFNAME ]; then
|
|
- grep \$IFNAME /etc/modprobe.conf | sed "s/\$IFNAME/$iname/" >> /etc/modprobe.conf.cobbler
|
|
- grep -v \$IFNAME /etc/modprobe.conf >> /etc/modprobe.conf.new
|
|
- rm -f /etc/modprobe.conf
|
|
- mv /etc/modprobe.conf.new /etc/modprobe.conf
|
|
+if [ -f "\$MODPROBE_CONF" ] && [ \$IFNAME ]; then
|
|
+ grep \$IFNAME \$MODPROBE_CONF | sed "s/\$IFNAME/$iname/" >> \$MODPROBE_CONF.cobbler
|
|
+ grep -v \$IFNAME \$MODPROBE_CONF >> \$MODPROBE_CONF.new
|
|
+ rm -f \$MODPROBE_CONF
|
|
+ mv \$MODPROBE_CONF.new \$MODPROBE_CONF
|
|
fi
|
|
echo "DEVICE=$iname" > $devfile
|
|
echo "HWADDR=$mac" >> $devfile
|
|
@@ -348,9 +352,9 @@
|
|
rm -f /etc/sysconfig/network-scripts/ifcfg-*
|
|
mv /etc/sysconfig/network-scripts/cobbler/* /etc/sysconfig/network-scripts/
|
|
rm -r /etc/sysconfig/network-scripts/cobbler
|
|
-if [ -f "/etc/modprobe.conf" ]; then
|
|
-cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf
|
|
-rm -f /etc/modprobe.conf.cobbler
|
|
+if [ -f "\$MODPROBE_CONF" ]; then
|
|
+cat \$MODPROBE_CONF.cobbler >> \$MODPROBE_CONF
|
|
+rm -f \$MODPROBE_CONF.cobbler
|
|
fi
|
|
#end if
|
|
# End post_install_network_config generated code
|