summaryrefslogtreecommitdiffstats
path: root/test/data/snippets
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-09-22 14:25:17 -0500
committerLuke Kanies <luke@madstop.com>2007-09-22 14:25:17 -0500
commit86dde63473d29c45d8698ce4edd53c820a621362 (patch)
tree5fe7d7095d1375cbbcb22e7cd6ac0a2071f6ca80 /test/data/snippets
parent60cd6a73b2b0cb7b26b091d4214c66eb5ed3b0ad (diff)
downloadpuppet-86dde63473d29c45d8698ce4edd53c820a621362.tar.gz
puppet-86dde63473d29c45d8698ce4edd53c820a621362.tar.xz
puppet-86dde63473d29c45d8698ce4edd53c820a621362.zip
All tests now pass in this configuration branch, which means
it's time to merge it back into the indirection branch. Considering that this work was what drove me to create the indirection branch in the first place, i should now be able to merge both back in the master branch.
Diffstat (limited to 'test/data/snippets')
-rw-r--r--test/data/snippets/failmissingexecpath.pp14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/data/snippets/failmissingexecpath.pp b/test/data/snippets/failmissingexecpath.pp
deleted file mode 100644
index b03875547..000000000
--- a/test/data/snippets/failmissingexecpath.pp
+++ /dev/null
@@ -1,14 +0,0 @@
-define distloc($path) {
- file { "/tmp/exectesting1":
- ensure => file
- }
- exec { "exectest":
- command => "touch $path",
- subscribe => File["/tmp/exectesting1"],
- refreshonly => true
- }
-}
-
-distloc { yay:
- path => "/tmp/execdisttesting",
-}