summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-08-07 01:30:09 +0000
committerJeremy Katz <katzj@redhat.com>2001-08-07 01:30:09 +0000
commitf255e7a66c1b09c57d777a643cfa4038007b8500 (patch)
tree398ce96652f18ca23be8d06069047f76895c5385 /packages.py
parent2c6d19c72fa042b07100eece9157db4412df6500 (diff)
downloadanaconda-f255e7a66c1b09c57d777a643cfa4038007b8500.tar.gz
anaconda-f255e7a66c1b09c57d777a643cfa4038007b8500.tar.xz
anaconda-f255e7a66c1b09c57d777a643cfa4038007b8500.zip
fstab is written out pre-install, so don't write it out post-install. move
%post action to actually be written out after all other configuration information since that's more sensible (50869)
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/packages.py b/packages.py
index d9655d196..1f4de0d23 100644
--- a/packages.py
+++ b/packages.py
@@ -628,7 +628,7 @@ def doPostInstall(method, id, intf, instPath):
return
w = intf.progressWindow(_("Post Install"),
- _("Performing post install configuration..."), 8)
+ _("Performing post install configuration..."), 7)
upgrade = id.upgrade.get()
arch = iutil.getArch ()
@@ -749,16 +749,12 @@ def doPostInstall(method, id, intf, instPath):
w.set(6)
- id.instClass.postAction(instPath, flags.serial)
-
- w.set(7)
-
if flags.setupFilesystems:
f = open("/tmp/cleanup", "w")
method.writeCleanupPath(f)
f.close()
- w.set(8)
+ w.set(7)
finally:
pass