diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/base/host.pp | 4 | ||||
| -rw-r--r-- | manifests/base/plug.pp | 2 | ||||
| -rw-r--r-- | manifests/base/raspberrypi.pp | 2 | ||||
| -rw-r--r-- | manifests/base/vserver.pp | 2 | 
4 files changed, 5 insertions, 5 deletions
| diff --git a/manifests/base/host.pp b/manifests/base/host.pp index f5e6495..f3c23de 100644 --- a/manifests/base/host.pp +++ b/manifests/base/host.pp @@ -28,8 +28,8 @@ class nodo::base::host {    # Time    $ntpdate = hiera('nodo::host::ntpdate', True)    case $ntpdate { -    false:   { class { 'timezone': } } -    default: { class { 'ntpdate':  } } +    false:   { class { 'ntp::timezone': } } +    default: { class { 'ntp::ntpdate':  } }    }    # Backup diff --git a/manifests/base/plug.pp b/manifests/base/plug.pp index 9c386ca..eedd9fe 100644 --- a/manifests/base/plug.pp +++ b/manifests/base/plug.pp @@ -7,7 +7,7 @@ class nodo::base::plug {    monkeysphere_host { "${::hostname}": } -  class { [ 'ntpdate', 'firewall' ]: } +  class { [ 'ntp::ntpdate', 'firewall' ]: }    # Backup    backupninja::sys { "sys": diff --git a/manifests/base/raspberrypi.pp b/manifests/base/raspberrypi.pp index 7847ada..1dc2acd 100644 --- a/manifests/base/raspberrypi.pp +++ b/manifests/base/raspberrypi.pp @@ -6,7 +6,7 @@ class nodo::base::raspberrypi {    monkeysphere_host { "${::hostname}": }    # Currently no firewall -  class { [ 'ntpdate' ]: } +  class { [ 'ntp::ntpdate' ]: }    backupninja::sys { "sys":      ensure     => present, diff --git a/manifests/base/vserver.pp b/manifests/base/vserver.pp index c8fbd71..0a8b589 100644 --- a/manifests/base/vserver.pp +++ b/manifests/base/vserver.pp @@ -1,5 +1,5 @@  class nodo::base::vserver { -  class { 'timezone': } +  class { 'ntp::timezone': }    class { 'syslog-ng::vserver': }    backupninja::sys { "sys": | 
