aboutsummaryrefslogtreecommitdiff
path: root/manifests/base.pp
blob: 66035ebfa585f53577101d6656e5f4bac8118de5 (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
class nodo::base {
  include lsb
  include nodo::subsystem::sudo
  include nodo::subsystem::locales
  include nodo::subsystem::profile
  include nodo::subsystem::apt
  include nodo::subsystem::backup
  include nodo::subsystem::mail
  include nodo::subsystem::sshd
  include nodo::subsystem::hostname
  include nodo::subsystem::local
  include nodo::utils
  include tunnel::autossh
  include domain_check
  include users::admin
  include concat::setup
  include cron

  class { [ 'nodo::subsystem::hosts', 'nodo::subsystem::motd' ]: }

  # Puppet daemon
  class { 'puppet::daemon':
    master => hiera('nodo::role::master::main', false)
  }

  # Does not work well inside vservers
  class { 'runit': ensure => absent }
}