summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index 877b87e5c..a602c2a07 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -152,8 +152,10 @@ class Kickstart(InstallClass):
self.installType = "upgrade"
def doNetwork(self, args):
+ # nodns is only used by the loader
(args, extra) = isys.getopt(args, '',
- [ 'bootproto=', 'ip=', 'netmask=', 'gateway=', 'nameserver=' ])
+ [ 'bootproto=', 'ip=', 'netmask=', 'gateway=', 'nameserver=',
+ 'nodns'])
bootProto = "dhcp"
ip = None
netmask = ""