Skip to content
Snippets Groups Projects
Unverified Commit 5cbd671b authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: remove print password from makefile

parent 929790ac
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,6 @@ _grant:
printf "\nPlease repeat the password for $(DATABASE_USER): "; read -s password2; \
if [ "$$password" != "$$password2" ]; then printf "\n\nThe passwords didn't match. Try again." ; else break ; fi; \
done ; \
printf "\n$$password\n" ; \
for host in $(subst $(comma), ,$(DATABASE_USER_HOST_LIST)); do \
$(MYSQL_CMD) $(MYSQL_CONNECTION) -e "CREATE USER '$(DATABASE_USER)'@'$$host' identified by '$$password';"; \
$(MYSQL_CMD) $(MYSQL_CONNECTION) -e "GRANT USAGE ON *.* TO '$(DATABASE_USER)'@'$$host';"; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment