mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
14 lines
503 B
Puppet
Executable File
14 lines
503 B
Puppet
Executable File
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.
|
|
database_user { [ "root@${::fqdn}", "root@${::hostname}", 'root@127.0.0.1',
|
|
"@${::fqdn}", "@${::hostname}", '@localhost', '@%' ]:
|
|
ensure => 'absent',
|
|
require => Class['mysql::config'],
|
|
}
|
|
database { 'test':
|
|
ensure => 'absent',
|
|
require => Class['mysql::config'],
|
|
}
|
|
}
|