Guest User

Untitled

a guest
May 25th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. begin
  2. t = resources(:template => "/etc/mysql/grants.sql")
  3. rescue
  4. Chef::Log.warn("Could not find previously defined grants.sql resource")
  5. t = template "/etc/mysql/grants.sql" do
  6. source "grants.sql.erb"
  7. owner "root"
  8. group "root"
  9. mode "0600"
  10. action :create
  11. end
  12. end
Add Comment
Please, Sign In to add comment