summaryrefslogtreecommitdiff
path: root/puppet/manifests/site.pp
blob: c7d00c61e98cb7e6bfbc3fe45a2567678ed6d16f (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
46
47
# set a default exec path
Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin' }

# parse services for host
$services=join(hiera_array('services'), ' ')
notice("Services for ${fqdn}: ${services}")

# make sure apt is updated before any packages are installed
include apt::update
Package { require => Exec['apt_updated'] }

include stdlib

include site_config::default
include site_config::slow


# configure eip
if $services =~ /\bopenvpn\b/ {
  include site_openvpn
}

if $services =~ /\bcouchdb\b/ {
  include site_couchdb
}

if $services =~ /\bwebapp\b/ {
  include site_webapp
  include site_nickserver
}

if $services =~ /\bsoledad\b/ {
  include soledad::server
}

if $services =~ /\bmonitor\b/ {
  include site_nagios
}

if $services =~ /\btor\b/ {
  include site_tor
}

if $services =~ /\bmx\b/ {
  include site_mx
}