diff options
author | Luke Kanies <luke@madstop.com> | 2007-09-22 15:04:34 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-09-22 15:04:34 -0500 |
commit | d6e91ae78698bdbec818d383574f4c279735e172 (patch) | |
tree | 7072c2a71ef1c05c6a46b6050f52bf3d01ae2843 /test/data/snippets/failmissingexecpath.pp | |
parent | a66699596452f88d2bc467af4cff3f9a1aec3d1e (diff) | |
parent | 86dde63473d29c45d8698ce4edd53c820a621362 (diff) | |
download | puppet-d6e91ae78698bdbec818d383574f4c279735e172.tar.gz puppet-d6e91ae78698bdbec818d383574f4c279735e172.tar.xz puppet-d6e91ae78698bdbec818d383574f4c279735e172.zip |
Merge branch 'configurations' into indirection
Conflicts:
lib/puppet/defaults.rb
lib/puppet/indirector/facts/yaml.rb
spec/unit/indirector/indirection.rb
spec/unit/indirector/indirector.rb
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", -} |