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

Diff of /puppet/modules/postfix/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1645 by misc, Fri May 27 07:09:25 2011 UTC revision 1952 by misc, Wed Aug 17 16:48:18 2011 UTC
# Line 12  class postfix { Line 12  class postfix {
12              subscribe => [ Package['postfix']],              subscribe => [ Package['postfix']],
13              path => "/etc/init.d/postfix"              path => "/etc/init.d/postfix"
14          }          }
     }      
15    
16      file { '/etc/postfix/main.cf':          file { '/etc/postfix/main.cf':
17          ensure => present,              ensure => present,
18          owner => root,              owner => root,
19          group => root,              group => root,
20          mode => 644,              mode => 644,
21          require => Package["postfix"],              require => Package["postfix"],
22          content => "",              content => "",
23          notify => [Service['postfix']]              notify => [Service['postfix']],
24      }          }
25        }
26    
27    
28      class simple_relay inherits base {      class simple_relay inherits base {
29          file { '/etc/postfix/main.cf':          File['/etc/postfix/main.cf'] {
30              content => template("postfix/simple_relay_main.cf"),              content => template("postfix/simple_relay_main.cf"),
31          }          }
32      }      }
# Line 35  class postfix { Line 35  class postfix {
35          include postgrey          include postgrey
36          include amavis          include amavis
37          include spamassassin          include spamassassin
38          file { '/etc/postfix/main.cf':          File['/etc/postfix/main.cf'] {
39              content => template("postfix/main.cf"),              content => template("postfix/main.cf"),
40          }          }
41    

Legend:
Removed from v.1645  
changed lines
  Added in v.1952

  ViewVC Help
Powered by ViewVC 1.1.30