From 73ad4ceea135b59d6d509b721a6eb358694e672b Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 3 Jun 2009 11:28:47 -0400 Subject: Don't unconditionally skip the network config screen in kickstart. This means you have to provide a network line in the kickstart file if you want the network to be automatically configured, therefore bringing the network command in line with how all the other kickstart commands work. --- loader/net.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'loader') diff --git a/loader/net.c b/loader/net.c index 4a58c60be..d4c63906e 100644 --- a/loader/net.c +++ b/loader/net.c @@ -618,18 +618,16 @@ int configureTCPIP(char * device, iface_t * iface, * noipv4 noipv6 * ip= noipv6 * ipv6= noipv4 - * we also skip this form for anyone doing a kickstart install */ if ((FL_IP_PARAM(flags) && FL_IPV6_PARAM(flags)) || (FL_IP_PARAM(flags) && FL_NOIPV6(flags)) || (FL_IPV6_PARAM(flags) && FL_NOIPV4(flags)) || - (FL_NOIPV4(flags) && FL_NOIPV6(flags)) || - (FL_IS_KICKSTART(flags))) { + (FL_NOIPV4(flags) && FL_NOIPV6(flags))) { skipForm = 1; newtPopWindow(); } #else - if (FL_IP_PARAM(flags) || FL_NOIPV4(flags) || FL_IS_KICKSTART(flags)) { + if (FL_IP_PARAM(flags) || FL_NOIPV4(flags)) { skipForm = 1; newtPopWindow(); } -- cgit