diff options
author | Michael Scherer <misc@mageia.org> | 2011-01-06 20:58:00 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-01-06 20:58:00 +0000 |
commit | c64c7fadafbd0443c412663da878e8031ac93719 (patch) | |
tree | 6443998f711a6bd9e5d64b5e33c0791c837a3a4f /manifests | |
parent | 880c521980a0ce353627e3842aebff4f5ecc6748 (diff) | |
download | puppet-c64c7fadafbd0443c412663da878e8031ac93719.tar puppet-c64c7fadafbd0443c412663da878e8031ac93719.tar.gz puppet-c64c7fadafbd0443c412663da878e8031ac93719.tar.bz2 puppet-c64c7fadafbd0443c412663da878e8031ac93719.tar.xz puppet-c64c7fadafbd0443c412663da878e8031ac93719.zip |
- split ml in a separate file ( so we could later use ruby dsl and a loop )
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/lists.pp | 49 | ||||
-rw-r--r-- | manifests/nodes.pp | 48 |
2 files changed, 50 insertions, 47 deletions
diff --git a/manifests/lists.pp b/manifests/lists.pp new file mode 100644 index 00000000..44a69659 --- /dev/null +++ b/manifests/lists.pp @@ -0,0 +1,49 @@ + +# please check that the list use the proper code for +# language ( not to be confused with tld or country code ) +sympa::public_list {"i18n-af": + subject => "List about translation to Afrikaans", + topics => "i18n", +} + +sympa::public_list {"i18n-de": + subject => "List about translation to German", + topics => "i18n", +} + +sympa::public_list {"i18n-et": + subject => "List about translation to Estonian", + topics => "i18n", +} + +sympa::public_list {"i18n-fr": + subject => "List about translation to French", + topics => "i18n", +} + +sympa::public_list {"i18n-nl": + subject => "List about translation to Dutch", + topics => "i18n", +} + +sympa::public_list {"i18n-pt_br": + subject => "List about translation to Brazilian Portuguese", + topics => "i18n", +} + +sympa::public_list {"i18n-pl": + subject => "List about translation to Polish", + topics => "i18n", +} + +sympa::public_list {"i18n-ru": + subject => "List about translation to Russian", + topics => "i18n", +} + +sympa::public_list {"i18n-tr": + subject => "List about translation to Turkish", + topics => "i18n", +} + + diff --git a/manifests/nodes.pp b/manifests/nodes.pp index d1c0dedb..1acf7ece 100644 --- a/manifests/nodes.pp +++ b/manifests/nodes.pp @@ -63,53 +63,7 @@ node alamut { include sympa::server include postfix::primary_smtp - # please check that the list use the proper code for - # language ( not to be confused with tld or country code ) - sympa::public_list {"i18n-af": - subject => "List about translation to Afrikaans", - topics => "i18n", - } - - sympa::public_list {"i18n-de": - subject => "List about translation to German", - topics => "i18n", - } - - sympa::public_list {"i18n-et": - subject => "List about translation to Estonian", - topics => "i18n", - } - - sympa::public_list {"i18n-fr": - subject => "List about translation to French", - topics => "i18n", - } - - sympa::public_list {"i18n-nl": - subject => "List about translation to Dutch", - topics => "i18n", - } - - sympa::public_list {"i18n-pt_br": - subject => "List about translation to Brazilian Portuguese", - topics => "i18n", - } - - sympa::public_list {"i18n-pl": - subject => "List about translation to Polish", - topics => "i18n", - } - - sympa::public_list {"i18n-ru": - subject => "List about translation to Russian", - topics => "i18n", - } - - sympa::public_list {"i18n-tr": - subject => "List about translation to Turkish", - topics => "i18n", - } - + import "lists" } # buildnode |