summaryrefslogtreecommitdiffstats
path: root/snippets
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2009-01-05 14:45:01 -0500
committerMichael DeHaan <mdehaan@redhat.com>2009-01-05 14:45:01 -0500
commitbdd0b28d5029d948bebe6e8fa15966d9b7ffb6f4 (patch)
treeff139cb786dbd53ca5c73d6249bd2ea07eb1ec96 /snippets
parent352bc629bd1f7790e895aceb380dbe315356e835 (diff)
downloadcobbler-bdd0b28d5029d948bebe6e8fa15966d9b7ffb6f4.tar.gz
cobbler-bdd0b28d5029d948bebe6e8fa15966d9b7ffb6f4.tar.xz
cobbler-bdd0b28d5029d948bebe6e8fa15966d9b7ffb6f4.zip
Fix modprobe.conf bash check code in network snippet
Diffstat (limited to 'snippets')
-rw-r--r--snippets/post_install_network_config8
1 files changed, 4 insertions, 4 deletions
diff --git a/snippets/post_install_network_config b/snippets/post_install_network_config
index ec9f15e1..aa6897c3 100644
--- a/snippets/post_install_network_config
+++ b/snippets/post_install_network_config
@@ -34,7 +34,7 @@
#set $i = 0
## setup bonding if we have to
#if $numbondingdevs > 0
-if [-x "/etc/modprobe.conf"]; then;
+if [ -f "/etc/modprobe.conf" ]; then;
echo "options bonding max_bonds=$numbondingdevs" >> /etc/modprobe.conf
fi
#end if
@@ -78,7 +78,7 @@ mv /etc/sysconfig/network.cobbler /etc/sysconfig/network
## if this is a bonded interface, configure it in modprobe.conf
#if $bonding.lower() == "master"
## Add required entry to modprobe.conf
-if [-x "/etc/modprobe.conf"]; then
+if [ -f "/etc/modprobe.conf" ]; then
echo "alias $iname bonding" >> /etc/modprobe.conf.cobbler
fi
#end if
@@ -88,7 +88,7 @@ fi
IFNAME=\$(ifconfig -a | grep -i '$mac' | cut -d ' ' -f 1)
## Rename this interface in modprobe.conf
## FIXME: if both interfaces startwith eth this is wrong
-if [-x "/etc/modprobe.conf"]; then;
+if [ -f "/etc/modprobe.conf" ]; 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
@@ -221,7 +221,7 @@ echo "$network via $router" >> $routesfile
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 [-x "/etc/modprobe.conf"]; then;
+if [ -f "/etc/modprobe.conf" ]; then;
cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf
rm -f /etc/modprobe.conf.cobbler
fi