2013-01-02 17:13:45 +01:00
|
|
|
# client package for mysql
|
2012-06-14 16:33:31 +02:00
|
|
|
class mysql::client (
|
|
|
|
$manage_shorewall = false
|
|
|
|
) {
|
2012-02-10 14:35:19 +01:00
|
|
|
case $::operatingsystem {
|
2010-05-10 20:26:42 +02:00
|
|
|
debian: { include mysql::client::debian }
|
|
|
|
default: { include mysql::client::base }
|
2009-10-03 15:19:11 +02:00
|
|
|
}
|
2009-12-10 19:10:06 +01:00
|
|
|
|
2012-06-14 16:33:31 +02:00
|
|
|
if $manage_shorewall {
|
2009-10-03 15:19:11 +02:00
|
|
|
include shorewall::rules::out::mysql
|
|
|
|
}
|
|
|
|
}
|