[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] Add the --stage2= and --repo= options to anaconda.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH] Add the --stage2= and --repo= options to anaconda.
- Date: Tue, 17 Jun 2008 11:45:37 -0400
---
anaconda | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/anaconda b/anaconda
index 06921e2..d8dc855 100755
--- a/anaconda
+++ b/anaconda
@@ -226,13 +226,16 @@ def parseOptions():
op.add_option("-d", "--debug", dest="debug", action="store_true", default=False)
op.add_option("--expert", action="store_true", default=False)
op.add_option("--kickstart", dest="ksfile")
- op.add_option("-m", "--method", default=None)
op.add_option("--rescue", dest="rescue", action="store_true", default=False)
op.add_option("-r", "--rootpath", action="callback", callback=rootpath_cb, dest="rootPath",
default="/mnt/sysimage", nargs=1, type="string")
op.add_option("-t", "--test", action="store_true", default=False)
op.add_option("--targetarch", dest="targetArch", nargs=1, type="string")
-
+
+ op.add_option("-m", "--method", dest="method", default=None)
+ op.add_option("--repo", dest="method", default=None)
+ op.add_option("--stage2", dest="stage2", default=None)
+
# Display
op.add_option("--headless", dest="isHeadless", action="store_true", default=False)
op.add_option("--lowres", dest="runres", action="store_const", const="640x480")
--
1.5.5.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]