Skip to content

Instantly share code, notes, and snippets.

@someara
Created August 14, 2015 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someara/221fcefd7642c47e5032 to your computer and use it in GitHub Desktop.
Save someara/221fcefd7642c47e5032 to your computer and use it in GitHub Desktop.
########################
# resources/logrotate.rb
########################
actions :create
default_action :create
########################
# providers/logrotate.rb
########################
# boilerplate
use_inline_resources
def whyrun_supported?
true
end
# actions
action :create do
template "/etc/logrotate.conf" do
source "logrotate.conf.erb"
mode "0644"
action :create
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment