summaryrefslogtreecommitdiff
path: root/examples/file_line.pp
blob: 85b132586dda768a5613785d2749dddbdd89b2eb (plain)
1
2
3
4
5
6
7
8
9
# 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',
}