diff options
-rw-r--r-- | manifests/init.pp | 2 | ||||
-rw-r--r-- | manifests/nodo.pp | 2 | ||||
-rw-r--r-- | manifests/subsystems/locales.pp (renamed from manifests/subsystems/locale.pp) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index ec22304..be3bc96 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -19,7 +19,7 @@ import "subsystems/pam.pp" import "subsystems/xorg.pp" import "subsystems/modprobe.pp" import "subsystems/hosts.pp" -import "subsystems/locale.pp" +import "subsystems/locales.pp" # Import nodo classes import "nodo.pp" diff --git a/manifests/nodo.pp b/manifests/nodo.pp index 56f1797..b0f2c82 100644 --- a/manifests/nodo.pp +++ b/manifests/nodo.pp @@ -9,7 +9,7 @@ class nodo { include utils include cron include hosts - include locale + include locales # Set timezone and ntp config # diff --git a/manifests/subsystems/locale.pp b/manifests/subsystems/locales.pp index 60ba4a3..3bed96f 100644 --- a/manifests/subsystems/locale.pp +++ b/manifests/subsystems/locales.pp @@ -1,4 +1,4 @@ -class locale { +class locales { package { "locales": ensure => installed, } |