diff options
author | Luke Kanies <luke@madstop.com> | 2007-09-25 00:43:15 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-09-25 00:43:15 -0500 |
commit | 4679f4dcc110e3362b0097efe1d5a416c659611b (patch) | |
tree | d8dd9aa3f220c7a1d8e3cb0d486e1a7bba7276f7 /test/data/snippets/failmissingexecpath.pp | |
parent | c3c3e519219ad80ac07d21c74849fbc4246c9d7a (diff) | |
parent | cdc8ea6e81c1b5eba5ea784bb7079c4c1f3965a4 (diff) | |
download | puppet-4679f4dcc110e3362b0097efe1d5a416c659611b.tar.gz puppet-4679f4dcc110e3362b0097efe1d5a416c659611b.tar.xz puppet-4679f4dcc110e3362b0097efe1d5a416c659611b.zip |
Merge branch 'indirection' of git://reductivelabs.com/puppet-luke
Diffstat (limited to 'test/data/snippets/failmissingexecpath.pp')
-rw-r--r-- | test/data/snippets/failmissingexecpath.pp | 14 |
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", -} |