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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 464 - (show annotations) (download)
Wed Nov 24 20:31:15 2010 UTC (13 years, 4 months ago) by misc
File size: 462 byte(s)
fix missing subscribe
1 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 subscribe => Package["amavisd-new"],
11 }
12
13 file { "/etc/amavisd/amavisd.conf":
14 ensure => present,
15 owner => root,
16 group => root,
17 mode => 644,
18 require => Package["amavisd-new"],
19 content => template('amavis/amavisd.conf')
20 }
21 }

  ViewVC Help
Powered by ViewVC 1.1.30