Mercurial > repos > other > Puppet
view modules/mysql/manifests/client/install.pp @ 454:d0e7979c7e8c
Update PHP configs for Ubuntu
Mostly fixing some INI naming so that it is consistent
between packages and what we write (so we don't end up with
mixed/duplicate content)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 13 Aug 2023 15:26:37 +0100 |
parents | 668df4711671 |
children |
line wrap: on
line source
# @summary # Private class for MySQL client install. # # @api private # class mysql::client::install { if $mysql::client::package_manage { package { 'mysql_client': ensure => $mysql::client::package_ensure, install_options => $mysql::client::install_options, name => $mysql::client::package_name, provider => $mysql::client::package_provider, source => $mysql::client::package_source, } } }