diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-04-18 19:20:41 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-04-18 19:20:41 -0300 |
commit | 362e00818561d07f93dfd0a948f332005208eab9 (patch) | |
tree | 0293c6d1b3c7a54558aefae221b1cec3feb590e9 /manifests | |
parent | 96e0488bf894b1b8cf5e33d743a798de5ffcb313 (diff) | |
download | puppet-nodo-362e00818561d07f93dfd0a948f332005208eab9.tar.gz puppet-nodo-362e00818561d07f93dfd0a948f332005208eab9.tar.bz2 |
Renaming class locales
Diffstat (limited to 'manifests')
-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, } |