swh:1:snp:7438b129d9cacb54440879827822fdf5f107e828
Raw File
Tip revision: 877deba078b2e82ced4bd0aef823d5e8c81d9ce7 authored by joe-wl on 22 April 2016, 02:41:03 UTC
Modified navigation gui to only allow selection of nodes associated with intersection red lines (odd numbered nodes).
Tip revision: 877deba
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