diff options
author | Marc Fournier <marc.fournier@camptocamp.com> | 2008-12-03 17:53:28 +0100 |
---|---|---|
committer | Marc Fournier <marc.fournier@camptocamp.com> | 2008-12-03 17:53:28 +0100 |
commit | 28df18c79fb71407af663ee9b3c214094e1551f1 (patch) | |
tree | ca379d7992fe56a3ca79f116c05c0558f858217b /manifests/definitions/config.pp | |
download | puppet-postfix-28df18c79fb71407af663ee9b3c214094e1551f1.tar.gz puppet-postfix-28df18c79fb71407af663ee9b3c214094e1551f1.tar.bz2 |
Initial import from bzr into github.
Diffstat (limited to 'manifests/definitions/config.pp')
-rw-r--r-- | manifests/definitions/config.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/definitions/config.pp b/manifests/definitions/config.pp new file mode 100644 index 0000000..ec6c782 --- /dev/null +++ b/manifests/definitions/config.pp @@ -0,0 +1,18 @@ +define postfix-ng::config ($ensure = present, $value, $nonstandard = false) { + case $ensure { + present: { + exec {"postconf -e ${name}='${value}'": + unless => $nonstandard ? { + false => "test \"x$(postconf -h ${name})\" == 'x${value}'", + true => "test \"x$(egrep '^${name} ' /etc/postfix/main.cf | cut -d= -f2 | cut -d' ' -f2)\" == 'x${value}'", + }, + notify => Service["postfix"], + require => File["/etc/postfix/main.cf"], + } + } + + absent: { + fail "postfix-ng::config ensure => absent: Not implemented" + } + } +} |