summaryrefslogtreecommitdiff
path: root/manifests/web/repo.pp
blob: bf02a93ab53e9b7b74c2d992f6cab3206f216abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# domain: the domain under which this repo will be avaiable
# projectroot: where the git repos are listened
# projects_list: which repos to export
define git::web::repo(
  $ensure = 'present',
  $projectroot = 'absent',
  $projects_list = 'absent',
  $sitename = 'absent'
){
  if ($ensure == 'present') and (($projects_list == 'absent') or ($projectroot == 'absent')){
    fail("You have to pass \$project_list and \$projectroot for ${name} if it should be present!")
  }
  if $ensure == 'present' { include git::web }
  $gitweb_url = $name
  case $gitweb_sitename {
    'absent': { $gitweb_sitename = "${name} git repository" }
    default: { $gitweb_sitename = $sitename }
  }
  $gitweb_config = "/etc/gitweb.d/${name}.conf"
  file{"${gitweb_config}": }
  if $ensure == 'present' {
    File["${gitweb_config}"]{
      content => template("git/web/config")
    }
  } else {
    File["${gitweb_config}"]{
      ensure => absent,
    }
  }
  case $gitweb_webserver {
    'lighttpd': {
      git::web::repo::lighttpd{$name:
        ensure => $ensure,
        gitweb_url => $gitweb_url,
        gitweb_config => $gitweb_config,
      }
    }
    'apache': {
      apache::vhost::gitweb{$gitweb_url:
        ensure => $ensure,
      }
    }
    default: { fail("no supported \$gitweb_webserver defined on ${fqdn}, so can't do git::web::repo: ${name}") }
  }
}