summaryrefslogtreecommitdiffstats
path: root/examples/code/snippets/missingexecpath.pp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/code/snippets/missingexecpath.pp')
-rw-r--r--examples/code/snippets/missingexecpath.pp13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/code/snippets/missingexecpath.pp b/examples/code/snippets/missingexecpath.pp
deleted file mode 100644
index 3f43be325..000000000
--- a/examples/code/snippets/missingexecpath.pp
+++ /dev/null
@@ -1,13 +0,0 @@
-define distloc(path) {
- file { "/tmp/exectesting1":
- create => file
- }
- exec { "touch $path":
- subscribe => file["/tmp/exectesting1"],
- refreshonly => true
- }
-}
-
-distloc {
- path => "/tmp/execdisttesting",
-}