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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 265 - (hide annotations) (download)
Wed Nov 17 15:35:10 2010 UTC (13 years, 5 months ago) by misc
File size: 1064 byte(s)
- add a proto module for taking care of pam ( need pam_ldap, etc support, and a review of the pam config file too )
1 misc 33 class postfix {
2    
3 misc 34 class base {
4 misc 33 package { postfix:
5     ensure => installed
6     }
7 misc 265 package { 'nail':
8 dams 225 ensure => installed
9     }
10 misc 33 service { postfix:
11     ensure => running,
12     subscribe => [ Package['postfix']],
13     path => "/etc/init.d/postfix"
14     }
15     }
16    
17     file { '/etc/postfix/main.cf':
18     ensure => present,
19     owner => root,
20     group => root,
21     mode => 644,
22     require => Package["postfix"],
23     content => "",
24     notify => [Service['postfix']]
25     }
26    
27    
28 misc 34 class simple_relay inherits base {
29 misc 33 file { '/etc/postfix/main.cf':
30 misc 36 content => template("postfix/simple_relay_main.cf"),
31 misc 33 }
32     }
33 misc 265
34     class primary_smtp inherits base {
35     file { '/etc/postfix/main.cf':
36     content => template("postfix/primary_main.cf"),
37     }
38     }
39    
40     class secondary_smtp inherits base {
41     file { '/etc/postfix/main.cf':
42     content => template("postfix/secondary_main.cf"),
43     }
44     }
45    
46 misc 33 }

  ViewVC Help
Powered by ViewVC 1.1.30