Skip to content

Commit

Permalink
Merge pull request #288 from knorth55/gdrive-server-machine-tag
Browse files Browse the repository at this point in the history
[gdrive_ros] add machine arg in gdrive_server.launch
  • Loading branch information
k-okada committed Sep 25, 2021
2 parents ecc4be5 + 03841fb commit e1f1391
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gdrive_ros/launch/gdrive_server.launch
@@ -1,10 +1,13 @@
<launch>
<arg name="machine" default="localhost"/>
<arg name="settings_yaml" default="$(optenv GOOGLE_DRIVE_SETTINGS_YAML /var/lib/robot/pydrive_settings.yaml)" />
<arg name="respawn" default="false" />
<arg name="node_name" default="gdrive_server" />

<machine name="localhost" address="localhost"/>

<node name="$(arg node_name)" pkg="gdrive_ros" type="gdrive_server_node.py"
output="screen" respawn="$(arg respawn)">
output="screen" respawn="$(arg respawn)" machine="$(arg machine)">
<rosparam subst_value="true">
settings_yaml: $(arg settings_yaml)
</rosparam>
Expand Down

0 comments on commit e1f1391

Please sign in to comment.