aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 2c49ea82599009e44be6948bdbe386107f268e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class git {
  # Obsolete
  if !defined(Package['git-core']) {
    package { 'git-core':
      ensure => absent,
    }
  }

  if !defined(Package['git']) {
    package { 'git':
      ensure => latest,
    }
  }
}