Merge "Fix puppet template "file patch parse error""

This commit is contained in:
Jenkins 2015-03-30 10:19:18 +00:00 committed by Gerrit Code Review
commit b7b0eb0951
1 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
file { 'barfile':
ensure => file,
mode => '0644',
path => '/tmp/$::bar',
content => '$::foo',
path => "/tmp/$::bar",
content => "$::foo",
}
file { 'output_result':
ensure => file,
path => '$::heat_outputs_path.result',
path => "$::heat_outputs_path.result",
mode => '0644',
content => 'The file /tmp/$::bar contains $::foo',
content => "The file /tmp/$::bar contains $::foo",
}