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 #!/bin/bash
REPEATER_NUMBER=123456 if [ -f cronosagent.conf ]
REPEATER_ADDRESS=172.33.20.136 then
SERVER_ADDRESS=master.dstar.su # Read configuration from text file
SERVER_PASSWORD=passw0rd source cronosagent.conf
SERVICE_MODE=1 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" ] if [ -n "$1" ]
then then