Mercurial > repos > other > Puppet
view modules/mysql/templates/my.cnf.pass.erb @ 333:8d8dd5c4ec0e
Check sender access earlier to allow whitelisting
This is important for some hosts who send from a domain that
doesn't have DNS, but that we want to allow
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 15 Mar 2020 16:51:56 +0000 |
parents | 48d3a1948e4d |
children | 668df4711671 |
line wrap: on
line source
### MANAGED BY PUPPET ### <% %w(mysql client mysqldump mysqladmin mysqlcheck).each do |section| %> [<%= section -%>] user=root host=localhost <% unless scope.lookupvar('mysql::server::root_password') == 'UNSET' -%> password='<%= scope.lookupvar('mysql::server::root_password') %>' <% end -%> socket=<%= @options['client']['socket'] %> <% end %>