Puppet Class: gitlab::package
- Inherits:
- gitlab
- Defined in:
- manifests/package.pp
Overview
- Class
-
gitlab::package
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/package.pp', line 4
class gitlab::package inherits gitlab {
Vcsrepo {
ensure => $ensure,
provider => 'git',
user => $git_user,
}
vcsrepo { "${git_home}/gitlab":
source => $gitlab_sources,
revision => $gitlab_branch,
}
vcsrepo { "${git_home}/gitlab-shell":
source => $gitlabshell_sources,
revision => $gitlabshell_branch,
}
}
|