summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/examples/file_line.pp
blob: e628bea34722081938ecbf501fa317120531563f (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',
}