From 85e0017a8553bc2ca75e8c42c5ad07373605bb44 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Sun, 23 Dec 2012 14:08:26 +0100 Subject: [PATCH] fix cron DOCUMENTATION --- library/cron | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/cron b/library/cron index 75a491c84f..16451b9686 100644 --- a/library/cron +++ b/library/cron @@ -101,7 +101,7 @@ options: reboot: description: - - If the job should be run at reboot, will ignore minute, hour, day, and month settings in favour of @reboot + - If the job should be run at reboot, will ignore minute, hour, day, and month settings in favour of C(@reboot) version_added: "1.0" required: false default: False @@ -113,7 +113,7 @@ examples: - code: 'cron: name="an old job" cron job="/some/dir/job.sh" state=absent' description: 'Ensure an old job is no longer present. Removes any job that is preceded by "#Ansible: an old job" in the crontab' - code: 'cron: name="a job for reboot" reboot=True job="/some/job.sh"' - description: 'Creates an entry like '@reboot /some/job.sh' + description: 'Creates an entry like "@reboot /some/job.sh"' requirements: cron author: Dane Summers