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 files changed, 2 insertions(+), 4 deletions(-) diff --git a/loader/net.c b/loader/net.c index 4a58c60..d4c6390 100644 --- a/loader/net.c +++ b/loader/net.c @@ -618,18 +618,16 @@ int configureTCPIP(char * device, iface_t * iface, * noipv4 noipv6 * ip=<val> noipv6 * ipv6=<val> 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(); } -- 1.6.1.3 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list