diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2019-09-12 15:16:20 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2019-09-12 15:16:20 -0300 | 
| commit | fc6db2964f841c1d17300891b5466331758d7901 (patch) | |
| tree | 491e27f92f2c3e082a3ecefcf142c9d541b3a049 | |
| parent | 3bdd82169a0b0034422af1d0b5285469b4973544 (diff) | |
| download | puppet-mysql-fc6db2964f841c1d17300891b5466331758d7901.tar.gz puppet-mysql-fc6db2964f841c1d17300891b5466331758d7901.tar.bz2  | |
Adds implementation param at mysql class
| -rw-r--r-- | manifests/init.pp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 35dba04..031ef79 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -12,7 +12,9 @@  # Marcel Haerry haerry+puppet(at)puzzle.ch  # Simon Josi josi+puppet(at)puzzle.ch -class mysql { +class mysql( +  $implementation = 'mysql-client', # 'mariadb-client' +) {    package { "mysql-client":      ensure  => installed,    }  | 
