summaryrefslogtreecommitdiff
path: root/lib/chef/provider/cron.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/cron.rb')
-rw-r--r--lib/chef/provider/cron.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider/cron.rb b/lib/chef/provider/cron.rb
index 694f7ba4b8..29ecd4dd2a 100644
--- a/lib/chef/provider/cron.rb
+++ b/lib/chef/provider/cron.rb
@@ -92,7 +92,7 @@ class Chef
end
end
- action :create do
+ action :create, description: "Create an entry in a cron table file (crontab). If an entry already exists (but does not match), update that entry to match." do
crontab = ""
newcron = ""
cron_found = false
@@ -149,7 +149,7 @@ class Chef
end
end
- action :delete do
+ action :delete, description: "Delete an entry from a cron table file (crontab)." do
if @cron_exists
crontab = ""
cron_found = false