view modules/mysql/examples/mysql_plugin.pp @ 447:1a9de0661666

Add missing package/dir for minimal Ubuntu Minimal is minimal - no locale, no cron, and some dirs do not exist
author IBBoard <dev@ibboard.co.uk>
date Mon, 08 May 2023 19:24:20 +0100
parents c6c9a2cfcfbd
children
line wrap: on
line source

class { 'mysql::server':
  root_password => 'password',
}

$validate_password_soname = $facts['os']['family'] ? {
  'windows' => 'validate_password.dll',
  default => 'validate_password.so'
}

mysql_plugin { 'validate_password':
  ensure => present,
  soname => $validate_password_soname,
}

$auth_socket_soname = $facts['os']['family'] ? {
  'windows' => 'auth_socket.dll',
  default => 'auth_socket.so'
}

mysql_plugin { 'auth_socket':
  ensure => present,
  soname => $auth_socket_soname,
}