blob: 035f5c7fbaccbcd5951f74179b6c15678c231b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class nodo::base::physical inherits nodo::base::host {
include nodo::subsystem::sensors
# Downtime monitoring
#
# Check https://tracker.debian.org/pkg/downtimed
# https://packages.debian.org/bookworm/downtimed
# https://dist.epipe.com/downtimed/
$downtimed = lookup('nodo::downtimed', undef, undef, 'absent')
package { [
'downtimed',
]:
ensure => $downtimed,
}
}
|