# 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 # 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, } }