mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-20 09:21:24 -07:00
[ip ... j]*.py: normalize docs (#9392)
* [ip ... j]*.py: normalize docs * Update plugins/modules/ip_netns.py Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
cea6eeef37
commit
a99f72fc36
43 changed files with 1290 additions and 1429 deletions
|
@ -9,7 +9,7 @@ from __future__ import absolute_import, division, print_function
|
|||
__metaclass__ = type
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
DOCUMENTATION = r"""
|
||||
module: jboss
|
||||
short_description: Deploy applications to JBoss
|
||||
description:
|
||||
|
@ -39,23 +39,23 @@ options:
|
|||
- The location in the filesystem where the deployment scanner listens.
|
||||
type: path
|
||||
state:
|
||||
choices: [ present, absent ]
|
||||
choices: [present, absent]
|
||||
default: "present"
|
||||
description:
|
||||
- Whether the application should be deployed or undeployed.
|
||||
type: str
|
||||
notes:
|
||||
- The JBoss standalone deployment-scanner has to be enabled in standalone.xml
|
||||
- The module can wait until O(deployment) file is deployed/undeployed by deployment-scanner.
|
||||
Duration of waiting time depends on scan-interval parameter from standalone.xml.
|
||||
- Ensure no identically named application is deployed through the JBoss CLI
|
||||
- The JBoss standalone deployment-scanner has to be enabled in C(standalone.xml).
|
||||
- The module can wait until O(deployment) file is deployed/undeployed by deployment-scanner. Duration of waiting time depends
|
||||
on scan-interval parameter from C(standalone.xml).
|
||||
- Ensure no identically named application is deployed through the JBoss CLI.
|
||||
seealso:
|
||||
- name: WildFly reference
|
||||
description: Complete reference of the WildFly documentation.
|
||||
link: https://docs.wildfly.org
|
||||
- name: WildFly reference
|
||||
description: Complete reference of the WildFly documentation.
|
||||
link: https://docs.wildfly.org
|
||||
author:
|
||||
- Jeroen Hoekx (@jhoekx)
|
||||
'''
|
||||
"""
|
||||
|
||||
EXAMPLES = r"""
|
||||
- name: Deploy a hello world application to the default deploy_path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue