mirror of
https://github.com/openwrt/telephony.git
synced 2025-12-22 01:44:35 +04:00
This upgrades freeswitch from 1.6.20 to 1.8.2. All changes imported from
master. Notable changes:
Modules:
- v8 removed as too difficult to maintain
- new modules: fail2ban, raven and video_filter
Init and hotplug:
- changed init config to uci (/etc/default/freeswitch replaced with
/etc/config/freeswitch)
- logging can now be enabled via /etc/config/freeswitch
- hotplug script is now included in the main package
- the post-install script no longer disables freeswitch during
upgrades
Fixes:
- freeswitch now sends console output properly to procd
Misc:
- the new release adds support for MSRP (Message Session Relay
Protocol, see
https://en.wikipedia.org/wiki/Message_Session_Relay_Protocol), this
opens TCP ports by default, can be limited to localhost in
autoload_configs/msrp.conf.xml
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
95 lines
2.1 KiB
Bash
95 lines
2.1 KiB
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2017 - 2018 OpenWrt.org
|
|
|
|
START=90
|
|
|
|
USE_PROCD=1
|
|
|
|
#PROCD_DEBUG=1
|
|
|
|
NAME=freeswitch
|
|
COMMAND=/usr/bin/$NAME
|
|
|
|
LOGGER="/usr/bin/logger -p user.err -s -t $NAME"
|
|
|
|
start_service() {
|
|
local dir
|
|
local enabled
|
|
|
|
local user
|
|
local group
|
|
|
|
local log_stderr
|
|
local log_stdout
|
|
|
|
local dir_cache
|
|
local dir_db
|
|
local dir_etc=/etc/$NAME
|
|
local dir_localstate=/var/lib/$NAME
|
|
local dir_log
|
|
local dir_recordings
|
|
local dir_run=/var/run/$NAME
|
|
local dir_storage
|
|
local dir_temp
|
|
|
|
local options
|
|
|
|
config_load $NAME
|
|
|
|
config_get_bool enabled general enabled 0
|
|
if [ $enabled -eq 0 ]; then
|
|
$LOGGER service not enabled in /etc/config/$NAME
|
|
exit 1
|
|
fi
|
|
|
|
config_get user general user $NAME
|
|
config_get group general group $NAME
|
|
|
|
config_get_bool log_stderr general log_stderr 1
|
|
config_get_bool log_stdout general log_stdout 1
|
|
|
|
config_get dir_cache directories cache /tmp/$NAME/cache
|
|
config_get dir_db directories db /tmp/$NAME/db
|
|
config_get dir_log directories log /tmp/$NAME/log
|
|
config_get dir_recordings directories recordings /tmp/$NAME/recordings
|
|
config_get dir_storage directories storage /tmp/$NAME/storage
|
|
config_get dir_temp directories temp /tmp/$NAME/temp
|
|
|
|
for dir in "$dir_cache" "$dir_db" "$dir_localstate" \
|
|
"$dir_log" "$dir_recordings" "$dir_run" "$dir_storage" \
|
|
"$dir_temp"
|
|
do
|
|
[ ! -e "$dir" ] && {
|
|
mkdir -p "$dir"
|
|
chown "$user":"$group" "$dir"
|
|
chmod 750 "$dir"
|
|
}
|
|
done
|
|
|
|
config_get options general options
|
|
|
|
procd_open_instance
|
|
# starting with full path seems cleaner judging by 'ps' output
|
|
procd_set_param command $COMMAND
|
|
# need to specify all or none of -conf, -log, and -db
|
|
procd_append_param command \
|
|
-cache "$dir_cache" \
|
|
-conf "$dir_etc" \
|
|
-db "$dir_db" \
|
|
-g "$group" \
|
|
-log "$dir_log" \
|
|
-recordings "$dir_recordings" \
|
|
-run "$dir_run" \
|
|
-storage "$dir_storage" \
|
|
-temp "$dir_temp" \
|
|
-u "$user" \
|
|
$options \
|
|
-c
|
|
# forward stderr to logd
|
|
procd_set_param stderr $log_stderr
|
|
# same for stdout
|
|
procd_set_param stdout $log_stdout
|
|
procd_close_instance
|
|
}
|
|
|