ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
From reading through the source for roslaunch, and from looking at the other posts on that question, I'm pretty sure the undocumented feature you're trying to use was removed in later versions of roslaunch.
Instead, you might want to try using the default
atrribute to the maching tag, to make all nodes run on the remote machine:
<launch>
<machine name="machname" address="mybot" user="myuser" default="true"/>
<include file="/opt/ros/indigo/share/turtlebot_bringup/launch/minimal.launch"/>
</launch>