diff options
-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, } |