summaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-01-04 20:59:20 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-01-04 20:59:20 +0000
commit239727c4ddc5db7c3764a4d113f781022d9c6d1f (patch)
treef8e8bea22a03518249f6ec78888a135b78253835 /test/data
parent2195b7637d52877aedf5b8e1d58b001d4a51dbd2 (diff)
downloadpuppet-239727c4ddc5db7c3764a4d113f781022d9c6d1f.tar.gz
puppet-239727c4ddc5db7c3764a4d113f781022d9c6d1f.tar.xz
puppet-239727c4ddc5db7c3764a4d113f781022d9c6d1f.zip
Re-enabling the dirchmod test and fixing its syntax
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2041 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/data')
-rw-r--r--test/data/snippets/dirchmod8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/data/snippets/dirchmod b/test/data/snippets/dirchmod
index dc2cc8949..15421ea10 100644
--- a/test/data/snippets/dirchmod
+++ b/test/data/snippets/dirchmod
@@ -5,15 +5,11 @@ file {
"/tmp/dirchmodtesta/testing": ensure => file
}
-file { "/tmp/dirchmodtesta":
- mode => 644, recurse => true
-}
+File["/tmp/dirchmodtesta"] { mode => 644, recurse => true }
file {
"/tmp/dirchmodtestb": ensure => directory;
"/tmp/dirchmodtestb/testing": ensure => file
}
-file { "/tmp/dirchmodtestb":
- mode => 600, recurse => true
-}
+File["/tmp/dirchmodtestb"] { mode => 600, recurse => true }