Skip to content
Snippets Groups Projects
Commit 90586c17 authored by David Trattnig's avatar David Trattnig
Browse files

Break loop.

parent 0231d60b
No related branches found
No related tags found
No related merge requests found
...@@ -89,10 +89,12 @@ while true; do ...@@ -89,10 +89,12 @@ while true; do
read -rsn1 input read -rsn1 input
if [ "$input" = "1" ]; then if [ "$input" = "1" ]; then
echo "Creating DB for MariaDB ..." echo "Creating DB for MariaDB ..."
sudo sh ./script/init-db-mariadb.sh ./script/init-db-mariadb.sh
break
fi fi
if [ "$input" = "2" ]; then if [ "$input" = "2" ]; then
echo "Manual database setup selected." echo "Manual database setup selected."
break
fi fi
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment