Update puppet coding style

Change-Id: I99eb0b2ed2f78be179605595105bfc798897cd3e
Closes-Bug: #1334627
This commit is contained in:
Longgeek 2014-06-26 20:19:15 +08:00
parent 683dbbad92
commit e795114a21
1 changed files with 12 additions and 11 deletions

View File

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