diff options
author | Michael Scherer <misc@mageia.org> | 2010-12-17 00:50:55 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-12-17 00:50:55 +0000 |
commit | 81af7f6855015afd416e43d58401cd25d58f3880 (patch) | |
tree | 1eacadf372ef0a079eecbe672a45d24d47ab1a4d /modules/sympa | |
parent | 9ff133a6d7901dcd733c7037ab0fe7f2e9cb38e6 (diff) | |
download | puppet-81af7f6855015afd416e43d58401cd25d58f3880.tar puppet-81af7f6855015afd416e43d58401cd25d58f3880.tar.gz puppet-81af7f6855015afd416e43d58401cd25d58f3880.tar.bz2 puppet-81af7f6855015afd416e43d58401cd25d58f3880.tar.xz puppet-81af7f6855015afd416e43d58401cd25d58f3880.zip |
add topics.conf, to manage topics of ml ( and how they appear in the web
page )
Diffstat (limited to 'modules/sympa')
-rw-r--r-- | modules/sympa/files/topics.conf | 3 | ||||
-rw-r--r-- | modules/sympa/manifests/init.pp | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/modules/sympa/files/topics.conf b/modules/sympa/files/topics.conf new file mode 100644 index 00000000..6e051393 --- /dev/null +++ b/modules/sympa/files/topics.conf @@ -0,0 +1,3 @@ +test +title Test lists +title.fr Listes de test diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index 2c4ada5c..c5fd8e47 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -105,6 +105,14 @@ class sympa { source => "puppet:///modules/sympa/scenari/subscriber_moderated", } + file { ["/etc/sympa/topics.conf"]: + ensure => present, + owner => root, + group => root, + mode => 755, + source => "puppet:///modules/sympa/topics.conf", + } + define ldap_search_filter { file { "/etc/sympa/search_filters/$name.ldap": ensure => present, |