aboutsummaryrefslogtreecommitdiff
path: root/manifests/git.pp
blob: e86de5e573181bfcf120f40c020ab21b4c3976b0 (plain)
1
2
3
4
5
6
7
8
9
# This class is the base for any other services handled by this module.

class git {
  if !defined(Package['git-core']) {
    package { 'git-core':
      ensure => installed,
    }
  }
}