swh:1:snp:7438b129d9cacb54440879827822fdf5f107e828
Raw File
Tip revision: dd368949d6b16a5a4908f78b8126702a2eaa4c00 authored by Andreas Aumiller on 15 January 2018, 20:58:27 UTC
New Estimator merged into benchmarker
Tip revision: dd36894
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