mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
merge together with dectmngr feeds update
This commit is contained in:
parent
499709e2df
commit
7add2a163d
2 changed files with 10 additions and 5 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
config dect 'global'
|
config dect 'global'
|
||||||
option log_dect_cmbs '0'
|
option log_dect_cmbs 'syslog'
|
||||||
|
|
|
||||||
|
|
@ -42,17 +42,22 @@ start_service() {
|
||||||
opt_ext="$opt_ext -model $model_id"
|
opt_ext="$opt_ext -model $model_id"
|
||||||
|
|
||||||
config_load dect
|
config_load dect
|
||||||
config_get_bool log_dect_cmbs global log_dect_cmbs 0
|
config_get log_dect_cmbs global log_dect_cmbs syslog
|
||||||
|
|
||||||
procd_open_instance
|
procd_open_instance
|
||||||
if [ $log_dect_cmbs -eq 0 ]; then
|
if [ "$log_dect_cmbs" = "none" ]; then
|
||||||
echo "Starting dectmngr with cmbs logging disabled"
|
echo "Starting dectmngr with cmbs logging disabled"
|
||||||
procd_set_param command $PROG -comname ttyH0 $opt_ext
|
procd_set_param command $PROG -comname ttyH0 $opt_ext
|
||||||
rm -f $LOG_PATH/*
|
rm -f $LOG_PATH/*
|
||||||
else
|
elif [ "$log_dect_cmbs" = "file" ]; then
|
||||||
echo "Starting dectmngr with cmbs logging enabled"
|
echo "Starting dectmngr with cmbs logging enabled to file"
|
||||||
procd_set_param command $PROG -comname ttyH0 -log $LOG_PATH/dect-cmbs.log $opt_ext
|
procd_set_param command $PROG -comname ttyH0 -log $LOG_PATH/dect-cmbs.log $opt_ext
|
||||||
|
else
|
||||||
|
echo "Starting dectmngr with cmbs logging enabled to syslog"
|
||||||
|
procd_set_param command $PROG -comname ttyH0 -syslog $opt_ext
|
||||||
|
rm -f $LOG_PATH/*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
procd_set_param respawn 6 2 3
|
procd_set_param respawn 6 2 3
|
||||||
procd_set_param term_timeout 20
|
procd_set_param term_timeout 20
|
||||||
procd_set_param triggers asterisk
|
procd_set_param triggers asterisk
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue