2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-02-26 07:11:35 +00:00

Fix dhcp mistake in the rhel initqueue

This prevented dhcp from ever being attempted
This commit is contained in:
Jarrod Johnson 2020-04-22 16:12:33 -04:00
parent 051b8259fd
commit 68251ffbb8

View File

@ -45,7 +45,7 @@ root=anaconda-net:$proto://$mgr/confluent-public/os/$profilename/distribution
export kickstart
export root
autoconfigmethod=$(grep ipv4_method /tmp/confluent.deploycfg)
autoconfigmethod=${autoconfigmethod#ipv4_method}
autoconfigmethod=${autoconfigmethod#ipv4_method: }
if [ "$autoconfigmethod" = "dhcp" ]; then
echo ip=$ifname:dhcp
else