summaryrefslogtreecommitdiff
path: root/features/data/cookbooks/lwrp/providers/default.rb
blob: f66e2914f6a5ea2425f1b1523ff8a2f7c0304630 (plain)
1
2
3
4
5
6
7
8
9
action :print_message do
  puts new_resource.message
end

action :touch_file do
  file "#{node[:tmpdir]}/#{new_resource.filename}" do
    action :create
  end
end