mynode/rootfs/standard/usr/bin/mynode_pre_sphinxrelay.sh
2021-02-13 15:33:12 -06:00

13 lines
310 B
Bash
Executable File

#!/bin/bash
set -x
set -e
LOCAL_IP_ADDR=$(hostname -I | head -n 1 | cut -d' ' -f1)
# Update IP address in config file (local IP)
if [ -f /mnt/hdd/mynode/sphinxrelay/app.json ]; then
sed -i "s/public_url\": \".*/public_url\": \"${LOCAL_IP_ADDR}:53001\",/g" /mnt/hdd/mynode/sphinxrelay/app.json
fi
exit 0