diff options
author | Rick Bradley <rick@rickbradley.com> | 2007-10-09 11:29:13 -0500 |
---|---|---|
committer | Rick Bradley <rick@rickbradley.com> | 2007-10-09 11:29:13 -0500 |
commit | fdfe807bd986a2b27f0dfd0cecde1a33aeee309b (patch) | |
tree | 0b6375bdefa041a7d4fbab9745ed084fb025bc30 /test/data/snippets/classpathtest | |
parent | 42b98562b5237797e1a51fdcdd57aa3c6825b404 (diff) | |
parent | 01f132d8b88467dfd314ad355f1cdf9f546945b3 (diff) | |
download | puppet-fdfe807bd986a2b27f0dfd0cecde1a33aeee309b.tar.gz puppet-fdfe807bd986a2b27f0dfd0cecde1a33aeee309b.tar.xz puppet-fdfe807bd986a2b27f0dfd0cecde1a33aeee309b.zip |
Merge branch 'master' of git://reductivelabs.com/puppet into routing
Diffstat (limited to 'test/data/snippets/classpathtest')
-rw-r--r-- | test/data/snippets/classpathtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/snippets/classpathtest b/test/data/snippets/classpathtest index 68610958b..580333369 100644 --- a/test/data/snippets/classpathtest +++ b/test/data/snippets/classpathtest @@ -1,11 +1,11 @@ # $Id$ -define component { +define mytype { file { "/tmp/classtest": ensure => file, mode => 755 } } class testing { - component { "componentname": } + mytype { "componentname": } } include testing |