diff options
author | Michael Scherer <misc@mageia.org> | 2011-01-09 11:15:10 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-01-09 11:15:10 +0000 |
commit | 8e656ffc17a0e2116c187602e4cad4a8ac8109b7 (patch) | |
tree | 28c83154b9b6ca445edde5eaf846ffef2c3fa4ac /deployment/lists | |
parent | 5f1d2fcc1efd2020c46ae685a668906e84d77a17 (diff) | |
download | puppet-8e656ffc17a0e2116c187602e4cad4a8ac8109b7.tar puppet-8e656ffc17a0e2116c187602e4cad4a8ac8109b7.tar.gz puppet-8e656ffc17a0e2116c187602e4cad4a8ac8109b7.tar.bz2 puppet-8e656ffc17a0e2116c187602e4cad4a8ac8109b7.tar.xz puppet-8e656ffc17a0e2116c187602e4cad4a8ac8109b7.zip |
move lists to a subdirectory deployment ( to separate them from pure module )
Diffstat (limited to 'deployment/lists')
-rw-r--r-- | deployment/lists/manifests/init.pp | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/deployment/lists/manifests/init.pp b/deployment/lists/manifests/init.pp new file mode 100644 index 00000000..e4d93a25 --- /dev/null +++ b/deployment/lists/manifests/init.pp @@ -0,0 +1,66 @@ +class lists { + + # 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", + } + + + sympa::announce_list_email {"sysadmin-commits": + subject => "List receiving commits mail from sysadmin team repository", + # FIXME change once we migrate + reply_to => "mageia-sysadm@$domain", + sender_email => "root@$domain", + topics => "sysadmin", + } + + sympa::announce_list_email {"sysadmin-reports": + subject => "List receiving automated reports from various pieces of infrastructure", + # FIXME change once we migrate + reply_to => "mageia-sysadm@$domain", + sender_email => "root@$domain", + topics => "sysadmin", + } +} |