Files
cgrates/data/docker/integration/scripts/mongo/setup_cgr_db.sh
2022-03-11 16:34:31 +01:00

15 lines
155 B
Bash
Executable File

#! /usr/bin/env sh
mongo --quiet create_user.js
cu=$?
if [ $cu = 0 ]; then
echo ""
echo "\t+++ CGR-DB successfully set-up! +++"
echo ""
exit 0
fi