Added support of uCI
This commit is contained in:
parent
c28a9ed78e
commit
08e3885c1b
2 changed files with 20 additions and 5 deletions
6
cronosagent.conf
Normal file
6
cronosagent.conf
Normal 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
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue