mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-03-28 17:32:36 +01:00
17 lines
653 B
Bash
17 lines
653 B
Bash
#!/bin/bash
|
|
|
|
# if no config.ini exists, copy the default one
|
|
if [ ! -f /app/config.ini ]; then
|
|
cp /app/config.template /app/config.ini
|
|
|
|
ls -l /app/config.ini
|
|
# Set type = tcp in [interface]
|
|
sed -i '/^\[interface\]/,/^[^[]/ s/^type = .*/type = tcp/' /app/config.ini
|
|
# Remove any commented or uncommented hostname lines in [interface]
|
|
sed -i '/^\[interface\]/,/^[^[]/ s/^#\? *hostname = .*$//' /app/config.ini
|
|
# Add hostname = meshtasticd:4403 after [interface]
|
|
sed -i '/^\[interface\]/a hostname = UPDATE-DOCKER-IP' /app/config.ini
|
|
fi
|
|
# Run the bot as appuser (if you want to drop privileges)
|
|
exec python /app/mesh_bot.py
|