aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {