Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / examples / file_line.pp
1 # This is a simple smoke test
2 # of the file_line resource type.
3 file { '/tmp/dansfile':
4   ensure => file,
5 }
6 -> file_line { 'dans_line':
7   line => 'dan is awesome',
8   path => '/tmp/dansfile',
9 }