Mercurial > repos > other > Puppet
view modules/mysql/manifests/client/install.pp @ 389:668df4711671
Update MySQL modules
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 03 Jan 2022 17:16:21 +0000 |
parents | 48d3a1948e4d |
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, } } }