Puppet Class: mysql_hardening::puppetlabs
- Defined in:
- manifests/puppetlabs.pp
Overview
Class: mysql_hardening::puppetlabs
Overlay provider for puppetlabs/mysql
Parameters
none
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'manifests/puppetlabs.pp', line 16
class mysql_hardening::puppetlabs(
) {
# hardening options
$hardening_oo = {
mysqld => {
automatic_sp_privileges => '0',
safe-user-create => '1',
skip-symbolic-links => '1',
secure-auth => '1',
local-infile => '0',
skip-show-database => true,
secure-file-priv => '/tmp',
allow-suspicious-udfs => '0'
}
}
# get the override options the user specifies
$org_oo = getparam(Class['::mysql::server'], 'override_options')
# now lay hardening on top
$new_options = merge_hardening( $org_oo, $hardening_oo )
class { '::mysql::server::account_security':
require => Anchor['mysql::server::end'],
}
# finally we need to make sure our options are written to the config file
class{'mysql_hardening::puppetlabs_override': }
}
|