Mercurial > repos > other > Puppet
annotate modules/mysql/templates/my.cnf.pass.erb @ 389:668df4711671
Update MySQL modules
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 03 Jan 2022 17:16:21 +0000 |
parents | 48d3a1948e4d |
children |
rev | line source |
---|---|
244 | 1 ### MANAGED BY PUPPET ### |
2 | |
3 <% %w(mysql client mysqldump mysqladmin mysqlcheck).each do |section| %> | |
4 [<%= section -%>] | |
0
956e484adc12
Initial public release of Puppet configs
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
5 user=root |
956e484adc12
Initial public release of Puppet configs
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
6 host=localhost |
389 | 7 <% if @root_password_set -%> |
8 password='<%= @root_password %>' | |
0
956e484adc12
Initial public release of Puppet configs
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
9 <% end -%> |
244 | 10 socket=<%= @options['client']['socket'] %> |
11 <% end %> |