8 lines
348 B
Puppet
8 lines
348 B
Puppet
# some installations have some default users which are not required.
|
|
# We remove them here. You can subclass this class to overwrite this behavior.
|
|
class mysql::server::account_security {
|
|
mysql_user{ [ "root@${::fqdn}", 'root@127.0.0.1', "@${::fqdn}", '@localhost', '@%' ]:
|
|
ensure => 'absent',
|
|
require => Exec['mysql_set_rootpw'],
|
|
}
|
|
}
|