From: Silvio Rhatto Date: Thu, 12 Sep 2019 18:19:18 +0000 (-0300) Subject: Adds implementation param at mysql class (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=b138437045c40fda484edc3b01d29f51c968ea58;p=puppet-mysql.git Adds implementation param at mysql class (2) --- diff --git a/manifests/init.pp b/manifests/init.pp index 031ef79..a88894e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -16,6 +16,7 @@ class mysql( $implementation = 'mysql-client', # 'mariadb-client' ) { package { "mysql-client": + name => $implementation, ensure => installed, } }