diff options
author | Chris Lumens <clumens@redhat.com> | 2008-08-14 15:31:04 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-08-14 15:31:04 -0400 |
commit | f24fab69d4cf07c5dfb55a62558505ea206dcb8c (patch) | |
tree | 6a76ebf9686f7088a705b84dc0612d64899bbeb5 /anaconda | |
parent | e218121a2080b73435a49d8857eff6d847252088 (diff) | |
download | anaconda-f24fab69d4cf07c5dfb55a62558505ea206dcb8c.tar.gz anaconda-f24fab69d4cf07c5dfb55a62558505ea206dcb8c.tar.xz anaconda-f24fab69d4cf07c5dfb55a62558505ea206dcb8c.zip |
Expert mode was disabled in 2004. Remove it now.
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -221,7 +221,6 @@ def parseOptions(): # Method of operation op.add_option("--autostep", action="store_true", default=False) 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("--rescue", dest="rescue", action="store_true", default=False) op.add_option("-r", "--rootpath", action="callback", callback=rootpath_cb, dest="rootPath", @@ -435,7 +434,7 @@ def setupLoggingFromOpts(opts): def getInstClass(): from installclass import DefaultInstall - return DefaultInstall(flags.expert) + return DefaultInstall() # ftp installs pass the password via a file in /tmp so # ps doesn't show it |