aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/mgagit/manifests/reposconfig.pp
blob: 326f2f88f8f56ac5e86b0df3eddfe5772d33c788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
define mgagit::reposconfig {
  include mgagit
  $giturl = "/git/infrastructure/repositories/${name}.git"
  $confdir = "${mgagit::reposconf_dir}/${name}"

  git::snapshot{ $confdir:
    source  => $giturl,
    user    => $mgagit::git_login,
    refresh => '0',
    require => File[$mgagit::reposconf_dir],
  }
}
# vim: sw=2