summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-19 18:51:45 +0000
committerErik Troan <ewt@redhat.com>1999-08-19 18:51:45 +0000
commit79f119645201ba5036eecaf03f5db0be2136067b (patch)
tree78144b134e8a2cf3c4cf49d126b92064f2e8079b /anaconda
parent9db9df13a1293ca028c00c3fd3e987cdcbacb060 (diff)
downloadanaconda-79f119645201ba5036eecaf03f5db0be2136067b.tar.gz
anaconda-79f119645201ba5036eecaf03f5db0be2136067b.tar.xz
anaconda-79f119645201ba5036eecaf03f5db0be2136067b.zip
moved traceOnly exit
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda6
1 files changed, 3 insertions, 3 deletions
diff --git a/anaconda b/anaconda
index 06805ec24..228b6ef6e 100755
--- a/anaconda
+++ b/anaconda
@@ -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)