summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-23 04:27:21 +0000
committerMatt Wilson <msw@redhat.com>1999-09-23 04:27:21 +0000
commitf208f1072df08c34d8e4fc77baf80b86d3ed673f (patch)
treeba1d9cd99b91aaf02f19632b2b946ea0dca74fb4 /kickstart.py
parent5e93c19fd16c7c5a18f3b69a7303b07be9bd2c51 (diff)
downloadanaconda-f208f1072df08c34d8e4fc77baf80b86d3ed673f.tar.gz
anaconda-f208f1072df08c34d8e4fc77baf80b86d3ed673f.tar.xz
anaconda-f208f1072df08c34d8e4fc77baf80b86d3ed673f.zip
fixed kickstart parsing problems
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kickstart.py b/kickstart.py
index 7ea672495..99145a63b 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -132,7 +132,7 @@ class Kickstart(InstallClass):
def doNetwork(self, args):
(args, extra) = isys.getopt(args, '',
- [ 'bootproto', 'ip', 'netmask', 'gateway', 'nameserver' ])
+ [ 'bootproto=', 'ip=', 'netmask=', 'gateway=', 'nameserver=' ])
bootProto = "dhcp"
ip = None
netmask = ""
@@ -197,7 +197,7 @@ class Kickstart(InstallClass):
"mmhittab" : "MM - HitTablet (serial)"
}
- (args, extra) = isys.getopt(args, '', [ 'device', 'emulthree',
+ (args, extra) = isys.getopt(args, '', [ 'device=', 'emulthree',
'kickstart'])
mouseType = "none"
device = None