summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/failmissingexecpath.pp
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/snippets/failmissingexecpath.pp')
-rw-r--r--test/data/snippets/failmissingexecpath.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/data/snippets/failmissingexecpath.pp b/test/data/snippets/failmissingexecpath.pp
index aae1a09fa..b03875547 100644
--- a/test/data/snippets/failmissingexecpath.pp
+++ b/test/data/snippets/failmissingexecpath.pp
@@ -2,7 +2,8 @@ define distloc($path) {
file { "/tmp/exectesting1":
ensure => file
}
- exec { "touch $path":
+ exec { "exectest":
+ command => "touch $path",
subscribe => File["/tmp/exectesting1"],
refreshonly => true
}