summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: d65103a064801b3c0be1ac4e77b8ecafcefe97a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Using recipe from
#
#   http://reductivelabs.com/trac/puppet/wiki/Recipes/MySQLStoredConfiguration
# 
# Using snippets from git://git.puppet.immerda.ch/module-mysql.git, whose original
# disclaimer is:
#
# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
# See LICENSE for the full license granted to you.
# Copyright 2008, admin(at)immerda.ch
# Copyright 2008, Puzzle ITC GmbH
# Marcel Haerry haerry+puppet(at)puzzle.ch
# Simon Josi josi+puppet(at)puzzle.ch

class mysql(
  $implementation = 'mariadb-client', # 'mysql-client'
) {
  package { "mysql-client":
    name    => $implementation,
    ensure  => installed,
  }
}