summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-02 20:32:52 +0000
committerErik Troan <ewt@redhat.com>2000-05-02 20:32:52 +0000
commitb221443478b145ccc95ca7c7c49debf0cca9dd1a (patch)
tree0e736cb79fd8a9a81c14348e55f2ed91b3735b82 /kickstart.py
parent848ed089f5da60d4f1309280c66277dfeb47de5f (diff)
downloadanaconda-b221443478b145ccc95ca7c7c49debf0cca9dd1a.tar.gz
anaconda-b221443478b145ccc95ca7c7c49debf0cca9dd1a.tar.xz
anaconda-b221443478b145ccc95ca7c7c49debf0cca9dd1a.zip
ignore url command
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index ed64caa4c..836d1707c 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -193,7 +193,7 @@ class Kickstart(InstallClass):
# nodns is only used by the loader
(args, extra) = isys.getopt(args, '',
[ 'bootproto=', 'ip=', 'netmask=', 'gateway=', 'nameserver=',
- 'nodns', 'hostname='])
+ 'nodns', 'device=', 'hostname='])
bootProto = "dhcp"
ip = None
netmask = ""
@@ -212,6 +212,9 @@ class Kickstart(InstallClass):
gateway = arg
elif str == "--nameserver":
nameserver = arg
+ elif str == "--device":
+ # XXX ignored, is that okay?
+ device = arg
elif str == "--hostname":
hostname = arg
self.setNetwork(bootProto, ip, netmask, gateway, nameserver)
@@ -314,6 +317,7 @@ class Kickstart(InstallClass):
"skipx" : self.doSkipX ,
"text" : None ,
"timezone" : self.doTimezone ,
+ "url" : None ,
"upgrade" : self.doUpgrade ,
"xconfig" : self.doXconfig ,
"xdisplay" : None ,