-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-1312
* master: Patch for move to Pause after dialing an invalid client This refer to #2358 Added comment for restcomm.xml configuration option This refer to #2346 add section about officially supported language Print log messages for S3AccessTool if waiting/uploading the file takes more than X sec (configurable) This refer to #2346 Patch for On Dial invalid/unregistered client, VoiceInterpreter should either execute Dial Action or move the the next verb This refer #2358 Patch for On Dial invalid/unregistered client, VoiceInterpreter should either execute Dial Action or move the the next verb This close #2358 Simulate long operation of FileUtils.waitFor putting the thread to sleep for 6000 ms This refer to #2346 Update S3AccessTool for integration with S3 Mock service. This refer to #2346 Simulate long operation of FileUtils.waitFor putting the thread to sleep for 6000 ms This refer to #2346 Patch to provide custom executor for long/blocking tasks Patch to add FileUtils.waitFor on S3AccessTool This refer #2339 This refer #2324 Simulate long operation of FileUtils.waitFor putting the thread to sleep for 1 minutes This refer to #2346 Added deveveloper doc for #2340 Minor tweak in logging statement #2340 Fixed the MySQL command to save privileges changes Chenged references to mariadb when mysql applies.. Patch to properly prepare S3Client for integration with S3Ninja for testing This close #2346 Add license scan status and report Added config-based RVD/rcmlserver resolver Patch to provide custom executor for long/blocking tasks Patch to remove blocking on S3AccessTool This close #2339 This close #2324 Configure 'rvdUrl' in dashboard.json from advanced.conf/RVD_URL
- Loading branch information
Showing
35 changed files
with
782 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...configuration/config-scripts/as7-config-scripts/restcomm/autoconfig.d/config-dashboard.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
## | ||
## Configures dashboard.json based on global configuration options in restcomm.conf and advanced.conf. | ||
## | ||
## requirements: | ||
## | ||
## RESTCOMM_HOME env variable to be set | ||
## dashboard.json should be in place (under $RESTCOMM_HOME/standalone/deployments/restcomm-management.war) | ||
## | ||
## Author: otsakir@gmail.com - Orestis Tsakiridis | ||
|
||
echo "Configuring Dashboard..." | ||
|
||
|
||
# MAIN | ||
if [ -z "$RESTCOMM_HOME" ] | ||
then | ||
echo "RESTCOMM_HOME env variable not set. Aborting." | ||
exit 1 | ||
fi | ||
|
||
|
||
# Variables | ||
DASHBOARD_ROOT="$RESTCOMM_HOME"/standalone/deployments/restcomm-management.war | ||
DASHBOARD_JSON_FILE="$DASHBOARD_ROOT"/conf/dashboard.json | ||
|
||
sed -i "s|\"rvdUrl\":\"[^\"]*\"|\"rvdUrl\":\"$RVD_URL/restcomm-rvd\"|" "$DASHBOARD_JSON_FILE" | ||
|
||
echo "Dasboard configured:" | ||
cat $DASHBOARD_JSON_FILE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.