1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
node "www.example.com" { $postfixConfig = "none" include postfix } { ... if ! $postfixConfig { $postfixConfig = default } include("postfix::config::${postfixConfig}") } { } { file {"/etc/postfix/main.cf": ensure => "present", content => ("postfix/default.main.cf.erb"), notify => Service["postfix"], } } |

