https://github.com/duckietown/Software
Raw File
Tip revision: cc658427aa457d2c231ea4a9542ed02591107380 authored by Simon Muntwiler on 16 January 2018, 12:08:02 UTC
Revert "Devel controllers demo improvedestimation"
Tip revision: cc65842
set_ros_master.sh
#!/usr/bin/env bash
echo "Setting ROS_MASTER_URI..."
if [ $# -gt 0 ]; then
	# provided a hostname, use it as ROS_MASTER_URI
	export ROS_MASTER_URI=http://$1.local:11311/
else
	echo "No hostname provided. Using $HOSTNAME."
	export ROS_MASTER_URI=http://$HOSTNAME.local:11311/
fi
echo "ROS_MASTER_URI set to $ROS_MASTER_URI"
back to top