/[adm]/puppet/modules/sympa/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/sympa/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 234 - (show annotations) (download)
Wed Nov 10 14:34:31 2010 UTC (13 years, 5 months ago) by dmorgan
File size: 357 byte(s)
First commit for sympa module
1 class sympa {
2
3 $package_list = ['sympa', 'sympa-www']
4
5 package { $package_list:
6 ensure => installed;
7 }
8
9 $password = extlookup("sympa_password")
10
11 file { '/etc/sympa/sympa.conf':
12 ensure => present,
13 owner => root,
14 group => root,
15 mode => 644,
16 content => template("sympa/sympa.conf")
17 }
18
19 }
20

  ViewVC Help
Powered by ViewVC 1.1.30