diff options
author | Pascal Terjan <pterjan@mageia.org> | 2017-04-22 22:58:56 +0100 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2017-04-22 22:58:56 +0100 |
commit | fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2 (patch) | |
tree | faea16d56692745a95c7893be932015e742dbed9 /modules/postfix | |
parent | b96026a3e1c80ade6685fffb0bc3eca655444af8 (diff) | |
download | puppet-fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2.tar puppet-fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2.tar.gz puppet-fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2.tar.bz2 puppet-fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2.tar.xz puppet-fef7d4bbfff0bffd82fbc80c8c8a315c183f95e2.zip |
Try to fix previous commit
Diffstat (limited to 'modules/postfix')
-rw-r--r-- | modules/postfix/manifests/simple_relay.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/postfix/manifests/simple_relay.pp b/modules/postfix/manifests/simple_relay.pp index 1decbec3..8911f781 100644 --- a/modules/postfix/manifests/simple_relay.pp +++ b/modules/postfix/manifests/simple_relay.pp @@ -2,7 +2,8 @@ class postfix::simple_relay inherits postfix { File['/etc/postfix/main.cf'] { content => template('postfix/simple_relay_main.cf'), } - File['/etc/postfix/sympa_aliases'] { - content => template('postfix/sympa_aliases'), + file { + '/etc/postfix/sympa_aliases': + content => template('postfix/sympa_aliases'); } } |