You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The <process../> element in a job configuration was useful to start an executable.

<job >
    <params />
    
    <process  file="/path/to/my_executable" param="my_param">
        <environment />
    </process>

    <run_time />
</job>

This above configuration is <span style="color:red">DEPRECATED</span>.

You can use the following instead:

<job >
    <params />

    <environment />
    
    <script  language="shell">
        <![CDATA[
/path/to/my_executable my_param
        ]]>
    </script>

    <run_time />
</job>
  • No labels