From 1e2ca8f4eeb38f711a3f8e862005845d900ca0a4 Mon Sep 17 00:00:00 2001 From: Florian DKHISSI <30991548+kiloutyg@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:05:21 +0100 Subject: [PATCH] Update env_update.sh --- env_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env_update.sh b/env_update.sh index ee17263..6c3402a 100755 --- a/env_update.sh +++ b/env_update.sh @@ -1,7 +1,7 @@ #!/bin/bash # Create the create-power-bi-ronlyuser.sql file -cat > create-power-bi-ronlyuser.sql <<`EOL` +cat > create-power-bi-ronlyuser.sql <<'EOL' CREATE USER 'powerbi'@'%' IDENTIFIED BY 'powerbi'; GRANT SELECT ON ${MYSQL_DATABASE}.* TO 'powerbi'@'%'; FLUSH PRIVILEGES;