Commit 72278692 authored by Mickaël Canévet's avatar Mickaël Canévet
Browse files

Merge pull request #100 from ekohl/patch-1

Fix puppet lint errors in examples
parents 545f2600 2f134947
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -18,19 +18,19 @@
#
# === Examples
#
#   node "toto.example.com" {
#   node 'toto.example.com' {
#
#     include postfix
#
#     postfix::hash { "/etc/postfix/transport":
#     postfix::hash { '/etc/postfix/transport':
#       ensure => present,
#     }
#     postfix::config { "transport_maps":
#       value => "hash:/etc/postfix/transport"
#     postfix::config { 'transport_maps':
#       value => 'hash:/etc/postfix/transport',
#     }
#     postfix::transport { "mailman.example.com":
#     postfix::transport { 'mailman.example.com':
#       ensure      => present,
#       destination => "mailman",
#       destination => 'mailman',
#     }
#   }
#