Bug 1055320

Summary: Mechanism to disable installation failure detection per recipe
Product: [Retired] Beaker Reporter: Dan Callaghan <dcallagh>
Component: lab controllerAssignee: beaker-dev-list
Status: CLOSED DEFERRED QA Contact: tools-bugs <tools-bugs>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: developCC: azelinka, mastyk, qwan, tools-bugs
Target Milestone: future_maintKeywords: FutureFeature, Patch, Triaged
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Enhancement
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2020-05-22 14:05:06 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Dan Callaghan 2014-01-20 00:41:46 UTC
For bug 952661 (install failure detection) we will be re-using the panic="ignore" attribute on <watchdog/> as a means of opting out of the log scanning. However it would be better if there were a separate, better named attributed specifically for controlling the install failure detection. For example:

    <watchdog panic="ignore" install_failure="ignore"/>

Comment 2 Nick Coghlan 2014-01-20 02:59:56 UTC
To clarify the spec for this, the behaviour if "install_failure" was not provided explicitly would still be driven by the requested behaviour for panic detection (to match the initial behaviour in Beaker 0.15.3).

The new option would just allow additional configurations like:

- ignoring install failures without ignoring panics
- ignoring panics without ignoring install failures

Comment 3 Tomas Klohna 🔧 2019-05-28 16:55:10 UTC
I would like to modify this proposal for sake of backwards compatibility and less complication.

        # panic="ignore"            > ignore all panic messages                  - Current approach
        # panic="ignore_others"     > ignore all but install failures
        # panic="ignore_install"    > ignore panic message during installation