dev/provisioning/modules/stdlib/examples/file_line.pp
author ymh <ymh.work@gmail.com>
Thu, 22 Sep 2016 16:05:08 +0200
changeset 280 59a2c10ac9b8
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
upgrade laravel to 5.3.10

# 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',
}