summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Moser <mail@renemoser.net>2016-04-26 15:10:46 +0200
committerBrian Coca <bcoca@ansible.com>2016-04-26 09:10:46 -0400
commit344dff4350489eea56285fca4e5c0ee6cf73cb2c (patch)
tree80e8d5becbd36504831354990693193e8c77cb2a
parent86f08bfcda17e95fb284f9a8b7c0a3cbf518173b (diff)
downloadansible-modules-extras-344dff4350489eea56285fca4e5c0ee6cf73cb2c.tar.gz
docs: fix make docs (#2107)
-rw-r--r--system/make.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/system/make.py b/system/make.py
index 9ac47124..ee8d07be 100644
--- a/system/make.py
+++ b/system/make.py
@@ -22,19 +22,25 @@ DOCUMENTATION = '''
---
module: make
short_description: Run targets in a Makefile
-requirements: []
+requirements: [ make ]
version_added: "2.1"
author: Linus Unnebäck (@LinusU) <linus@folkdatorn.se>
-description: Run targets in a Makefile.
+description:
+ - Run targets in a Makefile.
options:
target:
- description: The target to run
+ description:
+ - The target to run
required: false
+ default: none
params:
- description: Any extra parameters to pass to make
+ description:
+ - Any extra parameters to pass to make
required: false
+ default: none
chdir:
- description: cd into this directory before running make
+ description:
+ - cd into this directory before running make
required: true
'''