ros2_rmp/docker/bridge_entrypoint.sh
2023-09-05 08:52:37 +02:00

39 lines
1021 B
Bash

#!/bin/bash
# Basic entrypoint for ROS / Colcon Docker containers
UNDERLAY_WS=/rmp_ws
# Source ROS 2
source /opt/ros/${ROS_DISTRO}/setup.bash
echo "Sourced ROS 2 ${ROS_DISTRO}"
# Source the base workspace, if built
if [ -f ${UNDERLAY_WS}/install/setup.bash ]
then
source ${UNDERLAY_WS}/install/setup.bash
#export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:$(ros2 pkg prefix turtlebot3_gazebo)/share/turtlebot3_gazebo/models
echo "Sourced CPS RMP 220 base workspace"
fi
# Source the overlay workspace, if built
if [ -f /overlay_ws/install/setup.bash ]
then
source /overlay_ws/install/setup.bash
echo "Sourced CPS RMP 220 Overlay workspace"
fi
# Source the bridge workspace, if built
if [ -f /opt/ros/melodic/local_setup.bash ]
then
source /opt/ros/melodic/local_setup.bash
echo "Sourced melodic distribution"
fi
if [ -f /opt/ros/eloquent/local_setup.bash ]
then
source /opt/ros/eloquent/local_setup.bash
echo "Sourced eloquent distribution"
fi
# Execute the command passed into this entrypoint
exec "$@"