aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-04-22 18:35:18 +0000
committerNicolas Vigier <boklm@mageia.org>2013-04-22 18:35:18 +0000
commitcdd2802c15b198059de2fd8af420d943b88dfd79 (patch)
treeb03954c694c0ab006a4dcf70b6376c2ffd4acff4
parent56b5b68523ac7ec5966c6eda8b19ba5f0aaf9377 (diff)
downloadpuppet-cdd2802c15b198059de2fd8af420d943b88dfd79.tar
puppet-cdd2802c15b198059de2fd8af420d943b88dfd79.tar.gz
puppet-cdd2802c15b198059de2fd8af420d943b88dfd79.tar.bz2
puppet-cdd2802c15b198059de2fd8af420d943b88dfd79.tar.xz
puppet-cdd2802c15b198059de2fd8af420d943b88dfd79.zip
rename sympa::public_restricted_list to sympa::list::public_restricted
-rw-r--r--deployment/lists/manifests/init.pp4
-rw-r--r--modules/sympa/manifests/list/public_restricted.pp (renamed from modules/sympa/manifests/public_restricted_list.pp)2
2 files changed, 3 insertions, 3 deletions
diff --git a/deployment/lists/manifests/init.pp b/deployment/lists/manifests/init.pp
index a207fbeb..3096c772 100644
--- a/deployment/lists/manifests/init.pp
+++ b/deployment/lists/manifests/init.pp
@@ -250,7 +250,7 @@ class lists {
subscriber_ldap_group => 'mga-board',
}
- sympa::public_restricted_list { 'board-public':
+ sympa::list::public_restricted { 'board-public':
subject => 'Public board discussion',
subscriber_ldap_group => 'mga-board',
topics => 'governance',
@@ -262,7 +262,7 @@ class lists {
topics => 'governance',
}
- sympa::public_restricted_list { 'council':
+ sympa::list::public_restricted { 'council':
subject => 'Council discussions',
subscriber_ldap_group => 'mga-council',
topics => 'governance',
diff --git a/modules/sympa/manifests/public_restricted_list.pp b/modules/sympa/manifests/list/public_restricted.pp
index a7613a76..cdbab509 100644
--- a/modules/sympa/manifests/public_restricted_list.pp
+++ b/modules/sympa/manifests/list/public_restricted.pp
@@ -1,7 +1,7 @@
# list where only people from the ldap_group can post, and where
# they are subscribed by default, but anybody else can subscribe
# to read and receive messages
-define sympa::public_restricted_list( $subject,
+define sympa::list::public_restricted($subject,
$subscriber_ldap_group,
$language = 'en',
$topics = false) {