summaryrefslogtreecommitdiff
path: root/manifests/server/account_security.pp
blob: 23d1cb7c215aa4f4c083a2831a1c41eac7f0842a (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'],
   }
}