summaryrefslogtreecommitdiff
path: root/manifests/server/account_security.pp
blob: b5d75ca5e8a2af2db5deee71b3f9b890fa687eba (plain)
1
2
3
4
5
6
7
8
class mysql::server::account_security {
  # some installations have some default users which are not required.
  # We remove them here. You can subclass this class to overwrite this behavior.
  mysql_user{ [ "root@${::fqdn}", "root@127.0.0.1", "@${::fqdn}", "@localhost", "@%" ]:
    ensure => 'absent',
    require => Service['mysql'],
  }
}