aboutsummaryrefslogtreecommitdiff
path: root/manifests/host.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/host.pp')
-rw-r--r--manifests/host.pp16
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/host.pp b/manifests/host.pp
index aefbb92..19d8f2a 100644
--- a/manifests/host.pp
+++ b/manifests/host.pp
@@ -1,11 +1,11 @@
# Fully capable node able to host other nodes
class nodo::host inherits nodo {
- include initramfs
- include modprobe
- include firewire
- include sysctl
- include utils::physical
- include resolver
+ include nodo::subsystem::initramfs
+ include nodo::subsystem::modprobe
+ include nodo::subsystem::firewire
+ include nodo::subsystem::sysctl
+ include nodo::subsystem::resolver
+ include nodo::utils::physical
class { 'syslog-ng': }
monkeysphere_host { "${::hostname}": }
@@ -37,8 +37,8 @@ class nodo::host inherits nodo {
}
# Monitoring
- if !defined('monitor') {
- class { 'monitor':
+ if !defined('nodo::subsystem::monitor') {
+ class { 'nodo::subsystem::monitor':
type => 'host',
use_nagios => hiera('nodo::host::use_nagios', True),
}