mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
15 lines
150 B
Bash
Executable File
15 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
mongosh --quiet create_user.js
|
|
cu=$?
|
|
|
|
if [ $cu = 0 ]; then
|
|
echo ""
|
|
echo "\t+++ CGR-DB successfully set-up! +++"
|
|
echo ""
|
|
exit 0
|
|
fi
|
|
|
|
|