summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-10-04 15:51:42 +0000
committerJeremy Katz <katzj@redhat.com>2004-10-04 15:51:42 +0000
commit2f399cbf062a5c36cfa0729ba8ea12634295952c (patch)
tree3baac1eedfa4964c65db47ead2f329910dbf5ac8 /dispatch.py
parentd0871cc8b6de216c72fd75ff4c5953c5ff5a7e82 (diff)
downloadanaconda-2f399cbf062a5c36cfa0729ba8ea12634295952c.tar.gz
anaconda-2f399cbf062a5c36cfa0729ba8ea12634295952c.tar.xz
anaconda-2f399cbf062a5c36cfa0729ba8ea12634295952c.zip
2004-10-04 Jeremy Katz <katzj@redhat.com>
* dispatch.py (installSteps): * installclass.py (BaseInstallClass.setSteps): * upgradeclass.py (InstallClass.setSteps): Add copylogs step. * packages.py (copyAnacondaLogs): Copy /tmp/anaconda.log and /tmp/syslog to /var/log/anaconda.log and /var/log/anaconda.syslog so that they exist post-install (#124370)
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py
index 0b337864d..18fbefd75 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -22,7 +22,7 @@ from packages import checkMonitorOK, setSaneXSettings
from packages import writeKSConfiguration, turnOnFilesystems
from packages import doMigrateFilesystems
from packages import queryUpgradeContinue
-from packages import doPreInstall, doPostInstall, doPostAction
+from packages import doPreInstall, doPostInstall, doPostAction,copyAnacondaLogs
from autopart import doAutoPartition
from packages import firstbootConfiguration
from packages import betaNagScreen
@@ -154,6 +154,7 @@ installSteps = [
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
("setfilecon", setFileCons, ("instPath","id.partitions")),
+ ("copylogs", copyAnacondaLogs, ("instPath",))
("dopostaction", doPostAction, ("id", "instPath")),
("methodcomplete", doMethodComplete, ("method",)),
("complete", ()),