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

Annotation of /puppet/modules/amavis/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 413 - (hide annotations) (download)
Tue Nov 23 02:19:36 2010 UTC (13 years, 4 months ago) by misc
File size: 417 byte(s)
- add the start of a amavis module ( to interface postfix with spamassassin )
1 misc 413 class amavis {
2    
3     package { "amavisd-new":
4     ensure => installed,
5     }
6    
7     service { "amavisd":
8     ensure => running,
9     path => "/etc/init.d/amavisd",
10     }
11    
12     file { "/etc/amavisd/amavisd.conf":
13     ensure => present,
14     owner => root,
15     group => root,
16     mode => 644,
17     requires => Package["amavisd-new"],
18     content => template('amavis/amavisd.conf')
19     }
20     }

  ViewVC Help
Powered by ViewVC 1.1.30