Skip to content
Snippets Groups Projects
Commit 2f6d9913 authored by Paul Beuchat's avatar Paul Beuchat
Browse files

Added withGUI flag to the Agent launch file

parent 3b2802d9
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,9 @@
<!-- INPUT ARGUMENT OF THE AGENT's ID -->
<arg name="agentID" default="$(optenv DFALL_DEFAULT_AGENT_ID)" />
<!-- INPUT ARGUMENT FOR LAUNCHING A GUI OR NOT -->
<arg name="withGUI" default="true" />
<!-- Example of how to use the value in agentID -->
<!-- <param name="param" value="$(arg agentID)"/> -->
......@@ -132,13 +135,16 @@
/>
</node>
<!-- AGENT GUI (aka. the "student GUI") -->
<node
pkg = "d_fall_pps"
name = "student_GUI"
output = "screen"
type = "student_GUI">
</node>
<group if="$(arg withGUI)">
<node
pkg = "d_fall_pps"
name = "student_GUI"
output = "screen"
type = "student_GUI">
</node>
</group>
</group>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment