summaryrefslogtreecommitdiffstats
path: root/examples/code/execs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/code/execs')
-rw-r--r--examples/code/execs16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/code/execs b/examples/code/execs
deleted file mode 100644
index 44f133098..000000000
--- a/examples/code/execs
+++ /dev/null
@@ -1,16 +0,0 @@
-$path = "/usr/bin:/bin"
-
-exec { "mkdir -p /tmp/fakedir":
- path => $path
-}
-
-exec { "rm -rf /tmp/fakedir":
- path => $path
-}
-
-exec { "touch /this/directory/does/not/exist":
- path => $path,
- returns => 1
-}
-
-