summaryrefslogtreecommitdiff
path: root/examples/config/cookbooks/fakefile/recipes/default.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/config/cookbooks/fakefile/recipes/default.rb')
-rw-r--r--examples/config/cookbooks/fakefile/recipes/default.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/config/cookbooks/fakefile/recipes/default.rb b/examples/config/cookbooks/fakefile/recipes/default.rb
index ae52a405c6..3d126518f5 100644
--- a/examples/config/cookbooks/fakefile/recipes/default.rb
+++ b/examples/config/cookbooks/fakefile/recipes/default.rb
@@ -9,3 +9,11 @@ link "/tmp/foo" do
link_type :symbolic
target_file "/tmp/xmen"
end
+
+0.upto(1000) do |n|
+ file "/tmp/somefile#{n}" do
+ owner "adam"
+ mode 0644
+ action :create
+ end
+end \ No newline at end of file