diff options
Diffstat (limited to 'manifests/nodo.pp')
-rw-r--r-- | manifests/nodo.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/nodo.pp b/manifests/nodo.pp index e35ec3f..873c075 100644 --- a/manifests/nodo.pp +++ b/manifests/nodo.pp @@ -27,11 +27,11 @@ class nodo { $ntp_servers = [ 'a.ntp.br', 'b.ntp.br', 'c.ntp.br' ] # Email delivery configuration - case hiera('mail_delivery', 'exim') { + case hiera('nodo::mail_delivery', 'exim') { 'tunnel': { - $mail_hostname = hiera('mail_hostname') + $mail_hostname = hiera('nodo::mail_hostname') tunnel::mail { "$mail_hostname": - sshport => hiera('mail_ssh_port'), + sshport => hiera('nodo::mail_ssh_port'), } } 'postfix': { } @@ -47,8 +47,8 @@ class nodo { } class { 'apt': - include_src => hiera('apt_include_src', false), - use_next_release => hiera('apt_use_next_release', false), + include_src => hiera('nodo::apt_include_src', false), + use_next_release => hiera('nodo::apt_use_next_release', false), } include apt::unattended_upgrades |