I would like to remove all cron jobs before rebuilding them in a chef recipe. Is there any way to do this?
tried this
execute "crontab -r -u deploy" do
action :run
end
but only works if there is a file there..not sure how to check if it is there or not.