summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 59cdabd1a0917fcf9ed5d92341a36a2ed72845a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# passenger module
#
# Copyright 2010, Riseup Networks
# Micah Anderson micah(at)riseup.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.

class passenger {
  
  case $operatingsystem {
    debian: { include passenger::debian }
    default: { include passenger::base }
  }

  if $use_munin {
    include passenger::munin
  }  

}