diff options
author | James Laska <jlaska@redhat.com> | 2008-12-19 20:08:58 -0500 |
---|---|---|
committer | James Laska <jlaska@redhat.com> | 2008-12-19 20:08:58 -0500 |
commit | e28defb4dbf3a1eb029a5bbad4843c6c4bc37ad5 (patch) | |
tree | 65e7063e72e5f07a862126fb44ffcafce3cfcb9f /snippets | |
parent | 677db9899b06a8ecf10de5a0789b4a11bce9bc9a (diff) | |
download | cobbler-e28defb4dbf3a1eb029a5bbad4843c6c4bc37ad5.tar.gz cobbler-e28defb4dbf3a1eb029a5bbad4843c6c4bc37ad5.tar.xz cobbler-e28defb4dbf3a1eb029a5bbad4843c6c4bc37ad5.zip |
Fix typo's causing %post to fail
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/post_install_network_config | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/snippets/post_install_network_config b/snippets/post_install_network_config index ec9f15e1..6166a1d8 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 [ -x "/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 [ -x "/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 [ -x "/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 [ -x "/etc/modprobe.conf" ]; then cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf rm -f /etc/modprobe.conf.cobbler fi |