diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/apt.pp | 2 | ||||
-rw-r--r-- | manifests/subsystem/sshd.pp | 2 |
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'), |