diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-16 15:49:28 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-16 15:49:28 +0000 |
commit | 5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0 (patch) | |
tree | f9abfe7d7de9587ed21869b3e31168054471d808 /modules/sympa | |
parent | c4c43748a2ae2f7cd830a0d03a4eac46c736e6f4 (diff) | |
download | puppet-5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0.tar puppet-5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0.tar.gz puppet-5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0.tar.bz2 puppet-5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0.tar.xz puppet-5f409b45ac1e3d6b3c45f77824ec9472a0cc61a0.zip |
refactoring of some part of the sympa module
Diffstat (limited to 'modules/sympa')
-rw-r--r-- | modules/sympa/manifests/init.pp | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index e7b1df08..51a76694 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -69,22 +69,17 @@ class sympa { force => true, } - file { ["/etc/sympa/scenari/subscribe.open_web_only_notify", - "/etc/sympa/scenari/unsubscribe.open_web_only_notify"]: - source => "puppet:///modules/sympa/scenari/open_web_only_notify", - } - - file { ["/etc/sympa/scenari/send.subscriber_moderated"]: - source => "puppet:///modules/sympa/scenari/subscriber_moderated", - } - - file { ["/etc/sympa/scenari/create_list.forbidden"]: - source => "puppet:///modules/sympa/scenari/forbidden", - } - - - file { ["/etc/sympa/topics.conf"]: - source => "puppet:///modules/sympa/topics.conf", + file { + "/etc/sympa/scenari/subscribe.open_web_only_notify": + source => "puppet:///modules/sympa/scenari/open_web_only_notify"; + "/etc/sympa/scenari/unsubscribe.open_web_only_notify": + source => "puppet:///modules/sympa/scenari/open_web_only_notify"; + "/etc/sympa/scenari/send.subscriber_moderated": + source => "puppet:///modules/sympa/scenari/subscriber_moderated"; + "/etc/sympa/scenari/create_list.forbidden": + source => "puppet:///modules/sympa/scenari/forbidden"; + "/etc/sympa/topics.conf": + source => "puppet:///modules/sympa/topics.conf"; } define ldap_search_filter { |