aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2010-11-10 14:56:47 +0000
committerDexter Morgan <dmorgan@mageia.org>2010-11-10 14:56:47 +0000
commit8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2 (patch)
tree322cc86a79bc925c083a2f9f6a9321ba6a65779b /modules/sympa/manifests
parent925fe078ff9025fc97a5af31a4aea9c7ab4f52c9 (diff)
downloadpuppet-8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2.tar
puppet-8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2.tar.gz
puppet-8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2.tar.bz2
puppet-8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2.tar.xz
puppet-8484dcb7f69585b2b0ed4e30ef999c3bdb9fbbc2.zip
Add ldap template file
Diffstat (limited to 'modules/sympa/manifests')
-rw-r--r--modules/sympa/manifests/init.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp
index 5534b862..456ceb9c 100644
--- a/modules/sympa/manifests/init.pp
+++ b/modules/sympa/manifests/init.pp
@@ -7,6 +7,7 @@ class sympa {
}
$password = extlookup("sympa_password")
+ $ldappass = extlookup("sympa_ldap")
file { '/etc/sympa/sympa.conf':
ensure => present,
@@ -16,5 +17,12 @@ class sympa {
content => template("sympa/sympa.conf")
}
+ file { '/etc/sympa/ldap_alias_manager.conf':
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 644,
+ content => template("sympa/ldap_alias_manager.conf")
+ }
}