summaryrefslogtreecommitdiffstats
path: root/modules/git/manifests/server.pp
blob: 76b02b6035cd8d8128f7c4ceb8cb1bb0191e44e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class git::server {
  package {
    [
      "cgit",
      "fcgiwrap",
      "python-markdown",
      "python-pygments",
    ]:
    ensure => installed,
  }

  service { "fcgiwrap.socket":
    ensure => running,
    enable => true;
  }
}