Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Conversion corrections

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

</noinclude>

This example haveThree has three Job Chains.

Each job chain having its own set of jobs as shown below.

...

Code Block
languagehtml/xml

<?xml version="1.0" encoding="UTF-8"?>
<actions>
  <action name="jobchain1">
    <events>
      <event_group group="group">
        <event event_id="jobchain1" event_class="example" />
      </event_group>
    </events>
    <commands>
      <remove_event>
        <event event_id="jobchain1" event_class="example" />
      </remove_event>
      <command name="start_jobchain2" scheduler_host="vmubuntu1" scheduler_port="4444">
        <order job_chain="events_remote/job_chain2" replace="yes" />
      </command>
    </commands>
  </action>
  <action name="jobchain2">
    <events>
      <event_group group="group">
        <event event_id="jobchain2" event_class="example" />
      </event_group>
    </events>
    <commands>
      <command name="command_1">
        <order job_chain="events_remote/job_chain3" replace="yes" />
      </command>
      <remove_event>
        <event event_id="jobchain2" event_class="example" />
      </remove_event>
      <command name="command_2" />
    </commands>
  </action>
</actions>


...