aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/restricted_list_open.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-19 16:20:59 +0000
committerMichael Scherer <misc@mageia.org>2012-03-19 16:20:59 +0000
commitd41e3cbf65d55d23734b40411616270d004c6ea7 (patch)
tree74dbf5cd0722a44144fc63428f2ed9dae7dce4ee /modules/sympa/manifests/restricted_list_open.pp
parenta89526dd2a197d43064d727e81beb88dd8f2293b (diff)
downloadpuppet-d41e3cbf65d55d23734b40411616270d004c6ea7.tar
puppet-d41e3cbf65d55d23734b40411616270d004c6ea7.tar.gz
puppet-d41e3cbf65d55d23734b40411616270d004c6ea7.tar.bz2
puppet-d41e3cbf65d55d23734b40411616270d004c6ea7.tar.xz
puppet-d41e3cbf65d55d23734b40411616270d004c6ea7.zip
split all others type of list
Diffstat (limited to 'modules/sympa/manifests/restricted_list_open.pp')
-rw-r--r--modules/sympa/manifests/restricted_list_open.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/sympa/manifests/restricted_list_open.pp b/modules/sympa/manifests/restricted_list_open.pp
new file mode 100644
index 00000000..1730b970
--- /dev/null
+++ b/modules/sympa/manifests/restricted_list_open.pp
@@ -0,0 +1,14 @@
+# same as restricted list, but anybody can post
+define sympa::restricted_list_open( $subject,
+ $subscriber_ldap_group,
+ $language = 'en',
+ $topics = false) {
+ list { $name:
+ subject => $subject,
+ profile => '',
+ language => $language,
+ topics => $topics,
+ subscriber_ldap_group => $subscriber_ldap_group,
+ sender_ldap_group => $subscriber_ldap_group,
+ }
+}