summaryrefslogtreecommitdiff
path: root/web_infrastructure
diff options
context:
space:
mode:
authorMichael Warkentin <mwarkentin@gmail.com>2014-05-21 14:00:12 -0400
committerMichael Warkentin <mwarkentin@gmail.com>2014-05-21 14:00:12 -0400
commitc826b8573c7b58dcf81cc7e2794dbf560255120a (patch)
tree78f751aa9f66c289d578b24832e8a7b51edd84f1 /web_infrastructure
parent5ec0297c04547c20a64c5f94057949f23b604078 (diff)
downloadansible-modules-core-c826b8573c7b58dcf81cc7e2794dbf560255120a.tar.gz
Update `command` description
The docs were a little bit out of date with what commands are available to be run. They also didn't explain that you could pass custom commands - I almost went down the path of trying to run our custom management commands with the generic Ansible `command` module.
Diffstat (limited to 'web_infrastructure')
-rw-r--r--web_infrastructure/django_manage4
1 files changed, 2 insertions, 2 deletions
diff --git a/web_infrastructure/django_manage b/web_infrastructure/django_manage
index 42ce3781..246b9d9e 100644
--- a/web_infrastructure/django_manage
+++ b/web_infrastructure/django_manage
@@ -28,9 +28,9 @@ description:
version_added: "1.1"
options:
command:
- choices: [ 'cleanup', 'flush', 'loaddata', 'runfcgi', 'syncdb', 'test', 'validate', 'migrate', 'collectstatic' ]
+ choices: [ 'cleanup', 'collectstatic', 'flush', 'loaddata', 'migrate', 'runfcgi', 'syncdb', 'test', 'validate', ]
description:
- - The name of the Django management command to run. Allowed commands are cleanup, createcachetable, flush, loaddata, syncdb, test, validate.
+ - The name of the Django management command to run. Built in commands are cleanup, collectstatic, flush, loaddata, migrate, runfcgi, syncdb, test, and validate. Other commands can be entered, but will fail if they're unknown to Django.
required: true
app_path:
description: