[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/2] Don't unconditionally skip the network config screen in kickstart.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 1/2] Don't unconditionally skip the network config screen in kickstart.
- Date: Wed, 1 Jul 2009 13:57:47 -0400
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
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]