summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-02-08 20:46:48 +0000
committerChris Lumens <clumens@redhat.com>2005-02-08 20:46:48 +0000
commit727f5a75aa9d619f2fc11108c7f1fddfb9fb8016 (patch)
tree6d074c6241735732c050cf3ab509ba47d2c3d928 /dispatch.py
parenteb9c15c766e19efab46458c94a2569c51dc65cc1 (diff)
downloadanaconda-727f5a75aa9d619f2fc11108c7f1fddfb9fb8016.tar.gz
anaconda-727f5a75aa9d619f2fc11108c7f1fddfb9fb8016.tar.xz
anaconda-727f5a75aa9d619f2fc11108c7f1fddfb9fb8016.zip
Support --erroronfail as an option for %pre and %post blocks. This option
will display an error dialog and terminate installation, instead of just logging a failure and continuing on (#124368).
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py
index 6e170cfd4..cd8d803f9 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -157,7 +157,7 @@ installSteps = [
("writeksconfig", writeKSConfiguration, ("id", "instPath")),
("setfilecon", setFileCons, ("instPath","id.partitions")),
("copylogs", copyAnacondaLogs, ("instPath",)),
- ("dopostaction", doPostAction, ("id", "instPath")),
+ ("dopostaction", doPostAction, ("id", "instPath", "intf")),
("methodcomplete", doMethodComplete, ("method",)),
("complete", ()),
]