13 lines
413 B
13 lines
413 B
#!/bin/bash
|
|
|
|
case "$1" in
|
|
*)
|
|
cd /
|
|
ngcpcfg set /etc/ngcp-config/config.yml rtcengine.logging.level=debug
|
|
ngcpcfg set /etc/ngcp-config/config.yml www_admin.http_csc.csc_dev=yes
|
|
ngcpcfg set /etc/ngcp-config/config.yml pbx.enable=yes
|
|
ngcpcfg set /etc/ngcp-config/config.yml www_admin.privileges.subscriberadmin.subscribers.0=write
|
|
ngcpcfg apply 'Enable CSC, PBX and RtcEngine'
|
|
;;
|
|
esac
|