boinc/dcapi/examples/serialize-example/serialize-example-master.xm...

42 lines
945 B
XML

<?xml version="1.0" standalone="no"?>
<!--
Configuration template for the serialize example application
-->
<master>
<!-- Application name -->
<name>serialize-example</name>
<!-- Application version. There are no restrictions for the format of
master version numbers -->
<version>@PACKAGE_VERSION@</version>
<!-- Data files used by the master -->
<files>
<file>input.txt</file>
</files>
<!-- Master daemon definition -->
<daemon>
<binary>serialize-example-master</binary>
<arguments>
<arg>--config</arg>
<arg>${workdir}/dc-api.conf</arg>
</arguments>
</daemon>
<!-- The application manager script will substitute the correct
values for us -->
<dcapi-conf>dc-api.conf</dcapi-conf>
<!-- Validator daemon definition -->
<daemon>
<name>validator_for_textfiles</name>
<arguments>
<arg>-d</arg>
<arg>3</arg>
<arg>-app</arg>
<arg>serialize-example</arg>
</arguments>
</daemon>
</master>