diff options
-rwxr-xr-x | anaconda | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -204,6 +204,9 @@ else: print "No mode was specified" sys.exit(1) +if traceOnly: + sys.exit(0) + method = InstallMethod(imagepath) intf = InstallInterface() @@ -221,9 +224,6 @@ if test: if forceMount: setupFilesystems = 1 -if traceOnly: - sys.exit(0) - try: todo = ToDo(intf, method, rootPath, installSystem = installPackages, setupFilesystems = setupFilesystems) |