You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: puppet/modules/phpmyadmin/manifests/init.pp
+2-7
Original file line number
Diff line number
Diff line change
@@ -57,13 +57,8 @@
57
57
# On some machines the phpmyadmin user might be already installed.
58
58
# We have to drop and re-add this user because of new privileges and password.
59
59
exec{ 'creating-phpmyadmin-controluser':
60
-
command => "echo \"CREATE USER 'phpmyadmin'@'localhost'\
61
-
IDENTIFIED BY '${::pma_controluser_password}';\
62
-
GRANT ALL ON *.* TO 'phpmyadmin'@'localhost';FLUSH PRIVILEGES;\"\
63
-
| mysql -u root -p'${::pma_mysql_root_password}'",
60
+
command => "echo \"CREATE USER 'phpmyadmin'@'localhost' IDENTIFIED BY '${::pma_controluser_password}'; GRANT ALL ON *.* TO 'phpmyadmin'@'localhost';FLUSH PRIVILEGES;\" | mysql -u root -p'${::pma_mysql_root_password}'",
0 commit comments