4
Fork 0

Added support of uCI

This commit is contained in:
R3ABM Artem 2016-08-01 14:11:27 +04:00
parent c28a9ed78e
commit 08e3885c1b
2 changed files with 20 additions and 5 deletions

6
cronosagent.conf Normal file
View file

@ -0,0 +1,6 @@
REPEATER_NUMBER=123456
REPEATER_ADDRESS=172.33.20.136
SERVER_ADDRESS=master.dstar.su
SERVER_PASSWORD=passw0rd
SERVICE_MODE=1

View file

@ -1,10 +1,19 @@
#!/bin/bash
REPEATER_NUMBER=123456
REPEATER_ADDRESS=172.33.20.136
SERVER_ADDRESS=master.dstar.su
SERVER_PASSWORD=passw0rd
SERVICE_MODE=1
if [ -f cronosagent.conf ]
then
# Read configuration from text file
source cronosagent.conf
fi
if [ -f /etc/config/brandmeister ]
then
# Read configuration from uCU/LuCI on OpenWRT
REPEATER_NUMBER=$(uci get cronosagent.number)
REPEATER_ADDRESS=$(uci get cronosagent.repeaterAddress)
SERVER_ADDRESS=$(uci get cronosagent.serverAddress)
SERVER_PASSWORD=$(uci get cronosagent.serverPassword)
fi
if [ -n "$1" ]
then