puppetlabs-stdlib/examples/file_line.pp
Ewoud Kohl van Wijngaarden c7403a4e05 Style fixes
2015-07-25 13:34:31 +02:00

9 lines
193 B
Puppet

# This is a simple smoke test
# of the file_line resource type.
file { '/tmp/dansfile':
ensure => file,
} ->
file_line { 'dans_line':
line => 'dan is awesome',
path => '/tmp/dansfile',
}