summaryrefslogtreecommitdiff
path: root/examples/file_line.pp
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppetlabs.com>2015-07-15 14:12:46 +0100
committerDavid Schmitt <david.schmitt@puppetlabs.com>2015-07-15 14:12:46 +0100
commit1282649b91b482dd547b674f4d52af166a5eab69 (patch)
tree5b7c77e9913a0447c3ad648afcb386cc54a7222e /examples/file_line.pp
parenta0224412893d39463a4fde82887312b279f83e1b (diff)
parent14709d625b840da1919b5cd8933b73fb771e547b (diff)
Merge pull request #481 from tphoney/release_4.7.0
prep work for 4.7.0
Diffstat (limited to 'examples/file_line.pp')
-rw-r--r--examples/file_line.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/file_line.pp b/examples/file_line.pp
new file mode 100644
index 0000000..eea693e
--- /dev/null
+++ b/examples/file_line.pp
@@ -0,0 +1,9 @@
+# This is a simple smoke test
+# of the file_line resource type.
+file { '/tmp/dansfile':
+ ensure => present
+}->
+file_line { 'dans_line':
+ line => 'dan is awesome',
+ path => '/tmp/dansfile',
+}