Skip to content

Instantly share code, notes, and snippets.

@youribonnaffe
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save youribonnaffe/9595486 to your computer and use it in GitHub Desktop.
Save youribonnaffe/9595486 to your computer and use it in GitHub Desktop.
Bash script task
<?xml version="1.0" encoding="UTF-8"?>
<job xmlns="urn:proactive:jobdescriptor:dev" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:proactive:jobdescriptor:dev http://www.activeeon.com/public_content/schemas/proactive/jobdescriptor/dev/schedulerjob.xsd"
name="BashHelloWorld" priority="normal" cancelJobOnError="false">
<taskFlow>
<task name="BashScript">
<scriptExecutable>
<script>
<code language="bash">
echo "Hello World"
</code>
</script>
</scriptExecutable>
</task>
</taskFlow>
</job>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment