Browse Source

Configuration file support for recording-dir

pull/259/head
Pawel Kuzak 10 years ago
parent
commit
db96f61e07
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      debian/ngcp-rtpengine-daemon.default
  2. +1
    -0
      debian/ngcp-rtpengine-daemon.init

+ 1
- 0
debian/ngcp-rtpengine-daemon.default View File

@ -39,3 +39,4 @@ TABLE=0
# HOMER=123.234.345.456:65432
# HOMER_PROTOCOL=udp
# HOMER_ID=2001
# RECORDING_DIR=/var/spool/rtpengine/

+ 1
- 0
debian/ngcp-rtpengine-daemon.init View File

@ -92,6 +92,7 @@ OPTIONS="$OPTIONS --table=$TABLE"
[ -z "$HOMER" ] || OPTIONS="$OPTIONS --homer=$HOMER"
[ -z "$HOMER_PROTOCOL" ] || OPTIONS="$OPTIONS --homer-protocol=$HOMER_PROTOCOL"
[ -z "$HOMER_ID" ] || OPTIONS="$OPTIONS --homer-id=$HOMER_ID"
[ -z "$RECORDING_DIR" ] || OPTIONS="$OPTIONS --recording-dir=$RECORDING_DIR"
if test "$FORK" = "no" ; then
OPTIONS="$OPTIONS --foreground"


Loading…
Cancel
Save