From f24fab69d4cf07c5dfb55a62558505ea206dcb8c Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 14 Aug 2008 15:31:04 -0400 Subject: Expert mode was disabled in 2004. Remove it now. --- anaconda | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'anaconda') diff --git a/anaconda b/anaconda index b8eb71532..3de43dae2 100755 --- a/anaconda +++ b/anaconda @@ -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 -- cgit