diff options
author | Francois Deppierraz <francois@ip-10-226-54-102.eu-west-1.compute.internal> | 2009-03-02 12:29:31 +0100 |
---|---|---|
committer | Francois Deppierraz <francois@ip-10-226-54-102.eu-west-1.compute.internal> | 2009-03-02 12:29:31 +0100 |
commit | 29c3c8519c96b40f528e9e1985568fffe8ce46a2 (patch) | |
tree | efb721871f0252e6c3ea21822f86980ae932f4b3 /manifests/definitions/config.pp | |
parent | 8157cc71d8a24633035eb92ef7b34657e4785f29 (diff) | |
download | puppet-postfix-29c3c8519c96b40f528e9e1985568fffe8ce46a2.tar.gz puppet-postfix-29c3c8519c96b40f528e9e1985568fffe8ce46a2.tar.bz2 |
postix-ng -> postfix
find . -type f -exec perl -pi -e 's/postfix-ng/postfix/' {} \;
Diffstat (limited to 'manifests/definitions/config.pp')
-rw-r--r-- | manifests/definitions/config.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/definitions/config.pp b/manifests/definitions/config.pp index ec6c782..58fc590 100644 --- a/manifests/definitions/config.pp +++ b/manifests/definitions/config.pp @@ -1,4 +1,4 @@ -define postfix-ng::config ($ensure = present, $value, $nonstandard = false) { +define postfix::config ($ensure = present, $value, $nonstandard = false) { case $ensure { present: { exec {"postconf -e ${name}='${value}'": @@ -12,7 +12,7 @@ define postfix-ng::config ($ensure = present, $value, $nonstandard = false) { } absent: { - fail "postfix-ng::config ensure => absent: Not implemented" + fail "postfix::config ensure => absent: Not implemented" } } } |