Merge branch 'release/0.3'

master v0.3
Geoffrey Merck 4 years ago
commit 93b0a34108

@ -19,7 +19,7 @@
export BIN_DIR=/usr/local/bin export BIN_DIR=/usr/local/bin
export CFG_DIR=/usr/local/etc/ export CFG_DIR=/usr/local/etc/
export DATA_DIR=/usr/local/share/dstargateway.d/ export DATA_DIR=/usr/local/share/dstargateway.d/
export LOG_DIR=/var/log/dstargateway export LOG_DIR=/var/log/dstargateway/
# choose this if you want debugging help # choose this if you want debugging help
CPPFLAGS=-g -ggdb -W -Wall -std=c++17 CPPFLAGS=-g -ggdb -W -Wall -std=c++17
@ -86,8 +86,8 @@ install : dstargateway
# copy and adjust config # copy and adjust config
@cp -fn example.cfg $(CFG_DIR)/dstargateway.cfg @cp -fn example.cfg $(CFG_DIR)/dstargateway.cfg
@sed -i "s|log=.*|log=\"$(LOG_DIR)\"|g" $(CFG_DIR)/dstargateway.cfg @sed -i "s|path=/var/log/dstargateway/|path=$(LOG_DIR)|g" $(CFG_DIR)/dstargateway.cfg
@sed -i "s|data=.*|data=\"$(DATA_DIR)\"|g" $(CFG_DIR)/dstargateway.cfg @sed -i "s|data=/usr/local/share/dstargateway.d/|data=$(DATA_DIR)|g" $(CFG_DIR)/dstargateway.cfg
# copy binary # copy binary
@cp -f dstargateway $(BIN_DIR) @cp -f dstargateway $(BIN_DIR)

@ -95,7 +95,7 @@ callsign= # Has to be less than 8 characters, if empty gateway call will be us
address= # address where the repeater can be found, if left empty defaults to 127.0.0.1 address= # address where the repeater can be found, if left empty defaults to 127.0.0.1
port=20013 port=20013
type=hb # hb or icom type=hb # hb or icom
reflector=DCS208 C reflector=
reflectorAtStartup=true reflectorAtStartup=true
reflectorReconnect=30 # never, fixed, 5, 10, 15, 20, 25, 30, 60, 90, 120, 180 reflectorReconnect=30 # never, fixed, 5, 10, 15, 20, 25, 30, 60, 90, 120, 180
frequency=434.0 frequency=434.0
@ -118,7 +118,7 @@ callsign= # Has to be less than 8 characters, if empty gateway call will be us
address= # address where the repeater can be found, if left empty defaults to 127.0.0.1 address= # address where the repeater can be found, if left empty defaults to 127.0.0.1
port=20014 port=20014
type=hb # hb or icom type=hb # hb or icom
reflector=DCS208 C reflector=
reflectorAtStartup=true reflectorAtStartup=true
reflectorReconnect=30 # never, fixed, 5, 10, 15, 20, 25, 30, 60, 90, 120, 180 reflectorReconnect=30 # never, fixed, 5, 10, 15, 20, 25, 30, 60, 90, 120, 180
frequency=434.0 frequency=434.0

Loading…
Cancel
Save

Powered by TurnKey Linux.