Mercurial > repos > other > Puppet
view modules/mysql/examples/mysql_plugin.pp @ 94:89a94c61e4d6 puppet-3.6
Reduce opcache memory usage because it doesn't use that much
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 22 Jan 2016 20:27:16 +0000 |
parents | 58d1818c2ded |
children | 48d3a1948e4d |
line wrap: on
line source
class { 'mysql::server': root_password => 'password' } $validate_password_soname = $::osfamily ? { windows => 'validate_password.dll', default => 'validate_password.so' } mysql::plugin { 'validate_password': ensure => present, soname => $validate_password_soname, } $auth_socket_soname = $::osfamily ? { windows => 'auth_socket.dll', default => 'auth_socket.so' } mysql::plugin { 'auth_socket': ensure => present, soname => $auth_socket_soname, }