mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Fixup VMware module docs issues (#36409)
Fix various argspec vs documentation issue
This commit is contained in:
@@ -56,7 +56,7 @@ options:
|
||||
autostart:
|
||||
description:
|
||||
- Whether the app should restart with an autostart.cgi script
|
||||
required: false
|
||||
type: bool
|
||||
default: "no"
|
||||
|
||||
extra_info:
|
||||
@@ -68,7 +68,7 @@ options:
|
||||
port_open:
|
||||
description:
|
||||
- IF the port should be opened
|
||||
required: false
|
||||
type: bool
|
||||
default: false
|
||||
|
||||
login_name:
|
||||
@@ -91,12 +91,12 @@ options:
|
||||
EXAMPLES = '''
|
||||
- name: Create a test app
|
||||
webfaction_app:
|
||||
name="my_wsgi_app1"
|
||||
state=present
|
||||
type=mod_wsgi35-python27
|
||||
login_name={{webfaction_user}}
|
||||
login_password={{webfaction_passwd}}
|
||||
machine={{webfaction_machine}}
|
||||
name: "my_wsgi_app1"
|
||||
state: present
|
||||
type: mod_wsgi35-python27
|
||||
login_name: "{{webfaction_user}}"
|
||||
login_password: "{{webfaction_passwd}}"
|
||||
machine: "{{webfaction_machine}}"
|
||||
'''
|
||||
|
||||
import xmlrpclib
|
||||
|
||||
@@ -106,7 +106,7 @@ def main():
|
||||
name=dict(required=True),
|
||||
state=dict(required=False, choices=['present', 'absent'], default='present'),
|
||||
# You can specify an IP address or hostname.
|
||||
type=dict(required=True),
|
||||
type=dict(required=True, choices=['mysql', 'postgresql']),
|
||||
password=dict(required=False, default=None, no_log=True),
|
||||
login_name=dict(required=True),
|
||||
login_password=dict(required=True, no_log=True),
|
||||
|
||||
@@ -53,10 +53,7 @@ options:
|
||||
https:
|
||||
description:
|
||||
- Whether or not to use HTTPS
|
||||
required: false
|
||||
choices:
|
||||
- true
|
||||
- false
|
||||
type: bool
|
||||
default: 'false'
|
||||
|
||||
site_apps:
|
||||
|
||||
Reference in New Issue
Block a user