summaryrefslogtreecommitdiff
path: root/manifests/client.pp
blob: bb1aaa7efa5794e5acc628951c05f36065261c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class mysql::client (
  $manage_shorewall = false
) {

  case $::operatingsystem {
    debian: { include mysql::client::debian }
    default: { include mysql::client::base }
  }

  if $manage_shorewall {
    include shorewall::rules::out::mysql
  }

}