blob: 65e66ab3df21bb36b7fa48557ef8cc64e8bf88cf (
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
48
49
50
51
52
53
54
55
56
57
|
class nodo::physical inherits nodo {
include syslog-ng
include firewall
include initramfs
include modprobe
include firewire
include sysctl
include ups
include utils::physical
include smartmontools
# Vserver configuration
$vserver_vdirbase = "/var/vservers"
include vserver::host
if $use_nagios != false {
include nagios::target
nagios::service::ping { "$fqdn": }
}
# Time configuration
case $ntpdate {
false: { include timezone }
default: { include ntpdate }
}
# DNS resolver
$resolvconf_domain = "$domain"
$resolvconf_search = "$fqdn"
include resolvconf
# SSH Server
#
# We need to restrict listen address so multiple instances
# can live together in the same physical host.
#
case $sshd_listen_address {
'': { $sshd_listen_address = [ "$ipaddress" ] }
}
include sshd
backupninja::sys { "sys":
ensure => present,
}
# Munin configuration
munin_node { "$hostname":
port => '4900',
}
# SMART monitoring
include munin::plugins::smart
munin::plugin { "smart_sda":
ensure => "smart_",
config => "user root\ngroup disk",
}
}
|