blob: 746a6fa61cbceca5b0651a7011397f224e439dc4 (
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' ]: }
# Include if not defined by nodo::master
class { 'puppet::daemon':
master => hiera('nodo::role::master::main', false)
}
# Does not work well inside vservers
class { 'runit': ensure => absent }
}
|