diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2019-09-12 15:19:18 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2019-09-12 15:19:18 -0300 |
commit | b138437045c40fda484edc3b01d29f51c968ea58 (patch) | |
tree | a868f9e13869f9c2f449ab3709ca1c80f2ededf5 | |
parent | fc6db2964f841c1d17300891b5466331758d7901 (diff) | |
download | puppet-mysql-b138437045c40fda484edc3b01d29f51c968ea58.tar.gz puppet-mysql-b138437045c40fda484edc3b01d29f51c968ea58.tar.bz2 |
Adds implementation param at mysql class (2)
-rw-r--r-- | manifests/init.pp | 1 |
1 files changed, 1 insertions, 0 deletions
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, } } |