summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-16 21:25:48 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-16 21:25:48 +0000
commit7ddd7e521a330c87fe9d1918a780b91949c1b65e (patch)
tree7b2a8859144b24f6a5bfff490a49c94d4a6f8ffe /dispatch.py
parentfbd43c8b0d44dbf304aa7df9174511ba7013e06c (diff)
downloadanaconda-7ddd7e521a330c87fe9d1918a780b91949c1b65e.tar.gz
anaconda-7ddd7e521a330c87fe9d1918a780b91949c1b65e.tar.xz
anaconda-7ddd7e521a330c87fe9d1918a780b91949c1b65e.zip
eject the cdrom from the second stage via a generic cleanup so that it
gets ejected when we tell people to remove their media instead of waiting until the very very end. and now we don't eject on network installs either :)
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py
index 5956a6f9e..ddb107b9a 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -36,6 +36,7 @@ from upgrade import upgradeFindPackages, upgradeMountFilesystems
from upgrade import upgradeSwapSuggestion, upgradeMigrateFind
from upgrade import findRootParts
from network import networkDeviceCheck
+from installmethod import doMethodComplete
# These are all of the install steps, in order. Note that upgrade and
# install steps are the same thing! Upgrades skip install steps, while
@@ -139,6 +140,7 @@ installSteps = [
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
("dopostaction", doPostAction, ("id", "instPath")),
+ ("methodcomplete", doMethodComplete, ("method",)),
("complete", ()),
]