From 84110be91db0a7f115209cf6bd46a9771d75f0b8 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 19 May 2015 14:23:23 -0700 Subject: [PATCH] Update the cron docs to specify that it takes a boolean value --- lib/ansible/modules/system/cron.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/cron.py b/lib/ansible/modules/system/cron.py index 9728e4de401..cfb254acee4 100644 --- a/lib/ansible/modules/system/cron.py +++ b/lib/ansible/modules/system/cron.py @@ -73,7 +73,8 @@ options: - If set, create a backup of the crontab before it is modified. The location of the backup is returned in the C(backup_file) variable by this module. required: false - default: false + choices: [ "yes", "no" ] + default: no minute: description: - Minute when the job should run ( 0-59, *, */2, etc )