Merge "Update puppet coding style"
This commit is contained in:
@@ -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",
|
||||
}
|
||||
Reference in New Issue
Block a user