run.sh: fix $TO_RAN_IP and $TO_RAN_IU_IP usage

Add curly braces around both variables, so they get replaced properly
again.

Change-Id: I1f0f749b74fe5fd3982e045283735151f69c2487
This commit is contained in:
Oliver Smith 2019-03-13 15:16:16 +01:00
parent 44543a98b0
commit 2490f69804
1 changed files with 5 additions and 5 deletions

View File

@ -27,14 +27,14 @@ if [ -z "$(ip tuntap show | grep $apn)" ]; then
sudo ip link set $apn up
fi
if [ -z "$(ip addr show | grep "$TO_RAN_IP")" ]; then
echo "No interface has IP address $TO_RAN_IP! Hit enter to continue anyway."
if [ -z "$(ip addr show | grep "${TO_RAN_IP}")" ]; then
echo "No interface has IP address ${TO_RAN_IP}! Hit enter to continue anyway."
read enter_to_continue
fi
if [ -z "$(ip addr show | grep "$TO_RAN_IU_IP")" ]; then
echo "No interface has IP address $TO_RAN_IU_IP! Hit enter to 'ip addr add $TO_RAN_IU_IP/32 dev $dev'"
if [ -z "$(ip addr show | grep "${TO_RAN_IU_IP}")" ]; then
echo "No interface has IP address ${TO_RAN_IU_IP}! Hit enter to 'ip addr add ${TO_RAN_IU_IP}/32 dev $dev'"
read enter_to_continue
sudo ip addr add $TO_RAN_IU_IP/32 dev $dev
sudo ip addr add ${TO_RAN_IU_IP}/32 dev $dev
fi
logdir="current_log"