aboutsummaryrefslogtreecommitdiff
path: root/manifests/cgit.pp
blob: 217bb5fa7f97c6b58d709b0670fd2f54bc4b8b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class git::cgit {
  package { 'cgit':
    ensure  => $::lsbdistcodename ? {
      'wheezy' => absent,
      default  => present,
    }
  }

  # For synthax highlighting
  #package { 'python-pygments':
  #  ensure => present,
  #}
}