summaryrefslogtreecommitdiff
path: root/puppet/modules/site_static/manifests/location.pp
blob: d116de2f93d4eea79776b76cf1d4e6b1d74d6a37 (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
# configure static service for location
define site_static::location($path, $format, $source) {

  $file_path = "/srv/static/${name}"
  $allowed_formats = ['amber','rack']

  if $format == undef {
    fail("static_site location `${path}` is missing `format` field.")
  }

  if ! member($allowed_formats, $format) {
    $formats_str = join($allowed_formats, ', ')
    fail("Unsupported static_site location format `${format}`. Supported formats include ${formats_str}.")
  }

  if ($format == 'amber') {
    exec {"amber_build_${name}":
      cwd       => $file_path,
      command   => 'amber rebuild',
      user      => 'www-data',
      timeout   => 600,
      subscribe => Vcsrepo[$file_path]
    }
  }

  vcsrepo { $file_path:
    ensure   => present,
    force    => true,
    revision => $source['revision'],
    provider => $source['type'],
    source   => $source['repo'],
    owner    => 'www-data',
    group    => 'www-data'
  }

}