aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-04-14 15:16:10 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-04-14 15:16:10 -0300
commit4f839458059f76aebbc27cc7874ea9894879ff8b (patch)
treeb59d379292189cf491194aecad87a17b1f3577b8
parent3f2aad8d17bde2354ad6d222d85d7281c40391b5 (diff)
downloadpuppet-nodo-4f839458059f76aebbc27cc7874ea9894879ff8b.tar.gz
puppet-nodo-4f839458059f76aebbc27cc7874ea9894879ff8b.tar.bz2
Qualifying classes
-rw-r--r--manifests/subsystem/apt.pp2
-rw-r--r--manifests/subsystem/sshd.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/subsystem/apt.pp b/manifests/subsystem/apt.pp
index b3f643d..fd46f22 100644
--- a/manifests/subsystem/apt.pp
+++ b/manifests/subsystem/apt.pp
@@ -2,7 +2,7 @@ class nodo::subsystem::apt {
#
# Apt configuration
#
- class { 'apt':
+ class { '::apt':
include_src => hiera('nodo::subsystem::apt::include_src', false),
use_next_release => hiera('nodo::subsystem::apt::use_next_release', false),
custom_key_dir => hiera('nodo::subsystem::apt::custom_key_dir', 'puppet:///modules/site_apt/keys.d')
diff --git a/manifests/subsystem/sshd.pp b/manifests/subsystem/sshd.pp
index 80c6747..8f87567 100644
--- a/manifests/subsystem/sshd.pp
+++ b/manifests/subsystem/sshd.pp
@@ -4,7 +4,7 @@ class nodo::subsystem::sshd {
# We need to restrict listen address by default so multiple
# instances can live together in the same physical host.
#
- class { 'sshd':
+ class { '::sshd':
manage_nagios => hiera('nodo::subsystem::sshd::manage_nagios', false),
listen_address => hiera('nodo::subsystem::sshd::listen_address', [ "${::ipaddress}", '127.0.0.1' ]),
password_authentication => hiera('nodo::subsystem::sshd::password_authentication', 'yes'),