diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-19 18:51:45 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-19 18:51:45 +0000 |
commit | 79f119645201ba5036eecaf03f5db0be2136067b (patch) | |
tree | 78144b134e8a2cf3c4cf49d126b92064f2e8079b /anaconda | |
parent | 9db9df13a1293ca028c00c3fd3e987cdcbacb060 (diff) | |
download | anaconda-79f119645201ba5036eecaf03f5db0be2136067b.tar.gz anaconda-79f119645201ba5036eecaf03f5db0be2136067b.tar.xz anaconda-79f119645201ba5036eecaf03f5db0be2136067b.zip |
moved traceOnly exit
Diffstat (limited to 'anaconda')
-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) |