1
0
mirror of https://github.com/coltoneshaw/CS-Repro-Mattermost.git synced 2025-12-23 10:01:30 +01:00

The sven fix. show defaults in create command

This commit is contained in:
coltoneshaw
2023-03-17 10:35:04 -04:00
parent f916c7a418
commit 7d2f4d7092
2 changed files with 5 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
logins () { logins () {
echo =========================================================== echo ===========================================================
echo echo
echo "- Mattermost: http://localhost:8065" with the logins above echo "- Mattermost: http://localhost:8065" with the logins above if you ran setup
echo "- Keycloak: http://localhost:8080" with 'admin' / 'admin' echo "- Keycloak: http://localhost:8080" with 'admin' / 'admin'
echo "- Grafana: http://localhost:3000" with 'admin' / 'admin' echo "- Grafana: http://localhost:3000" with 'admin' / 'admin'
echo " - All Mattermost Grafana charts are setup." echo " - All Mattermost Grafana charts are setup."

View File

@@ -15,7 +15,7 @@ setup() {
echo "If you are curious about the config changes check out the file ./files/mattermost/defaultConfig.json" echo "If you are curious about the config changes check out the file ./files/mattermost/defaultConfig.json"
echo "If you don't want to do this, just press enter." echo "If you don't want to do this, just press enter."
echo echo
read -p "Y / N " -n 1 -r read -p "y / N " -n 1 -r
echo # (optional) move to a new line echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]; then if [[ $REPLY =~ ^[Yy]$ ]]; then
echo =========================================================== echo ===========================================================
@@ -30,6 +30,9 @@ setup() {
echoLogins echoLogins
exit 0 exit 0
else
echo "skipping test Data setup for Mattermost"
exit 0
fi fi
fi fi