summaryrefslogtreecommitdiff
path: root/manifests/daemon.pp
blob: 33c0a264bb2d2aefb4330f6d46690b360102b473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class git::daemon {

    include git

    case $operatingsystem {
        debian: { include git::daemon::debian }
        centos: { include git::daemon::centos }
    }

    if $use_shorewall {
      include shorewall::rules::gitdaemon
    }

}