diff options
author | Chris Lumens <clumens@redhat.com> | 2005-02-08 20:46:48 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-02-08 20:46:48 +0000 |
commit | 727f5a75aa9d619f2fc11108c7f1fddfb9fb8016 (patch) | |
tree | 6d074c6241735732c050cf3ab509ba47d2c3d928 /dispatch.py | |
parent | eb9c15c766e19efab46458c94a2569c51dc65cc1 (diff) | |
download | anaconda-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.py | 2 |
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", ()), ] |