aboutsummaryrefslogtreecommitdiff
path: root/manifests/base/vserver.pp
blob: 0a8b58974a90386eaa158276af70b1827255400e (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
class nodo::base::vserver {
  class { 'ntp::timezone': }
  class { 'syslog-ng::vserver': }

  backupninja::sys { "sys":
    ensure     => present,
    partitions => false,
    hardware   => false,
    dosfdisk   => false,
    dohwinfo   => false,
  }

  $hosting_type = hiera('nodo::vserver::hosting_type', 'direct')

  case $hosting_type {
    "direct": {
      # Apply munin and monkeysphere configuration for
      # for directly hosted nodes.
      Munin_node        <<| title == $::hostname |>>
      Monkeysphere_host <<| title == $::hostname |>>
    }
    "third-party": {
      # Apply munin and monkeysphere configuration for
      # nodes hosted by third-parties.
      munin_node { "${::hostname}": }
      monkeysphere_host { "${::hostname}":
        port => hiera('nodo::vserver::ssh_port', '22'),
      }

      # Nagios configuration
      class { 'nodo::subsystem::monitor': }
    }
  }

}