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

  include git

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

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

  if $use_nagios {
    nagios::service { "git-daemon": check_command => "check_git!${fqdn}"; }
  }
}