mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Misc typo corrections
Fix adds correction for typos * Anisble to Ansible * Fasle to False Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
0ac4a82f3b
commit
8f6626bd8f
4 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,7 @@ Enabling Networking logging and how to read the logfile
|
||||||
|
|
||||||
Ansible 2.3 features improved logging to help diagnose and troubleshoot issues regarding Ansible Networking modules.
|
Ansible 2.3 features improved logging to help diagnose and troubleshoot issues regarding Ansible Networking modules.
|
||||||
|
|
||||||
Because logging is very verbose it is disabled by default. It can be enabled via the :envvar:`ANSIBLE_LOG_PATH` and :envvar:`ANISBLE_DEBUG` options::
|
Because logging is very verbose it is disabled by default. It can be enabled via the :envvar:`ANSIBLE_LOG_PATH` and :envvar:`ANSIBLE_DEBUG` options::
|
||||||
|
|
||||||
# Specify the location for the log file
|
# Specify the location for the log file
|
||||||
export ANSIBLE_LOG_PATH=~/ansible.log
|
export ANSIBLE_LOG_PATH=~/ansible.log
|
||||||
|
|
|
@ -733,7 +733,7 @@ class ACIModule(object):
|
||||||
def post_config(self):
|
def post_config(self):
|
||||||
"""
|
"""
|
||||||
This method is used to handle the logic when the modules state is equal to present. The method only pushes a change if
|
This method is used to handle the logic when the modules state is equal to present. The method only pushes a change if
|
||||||
the object has differences than what exists on the APIC, and if check_mode is Fasle. A successful change will mark the
|
the object has differences than what exists on the APIC, and if check_mode is False. A successful change will mark the
|
||||||
module as changed.
|
module as changed.
|
||||||
"""
|
"""
|
||||||
if not self.result['config']:
|
if not self.result['config']:
|
||||||
|
|
|
@ -261,7 +261,7 @@ def create_trail(module, client, ct_params):
|
||||||
"""
|
"""
|
||||||
Creates a CloudTrail
|
Creates a CloudTrail
|
||||||
|
|
||||||
module : AnisbleModule object
|
module : AnsibleModule object
|
||||||
client : boto3 client connection object
|
client : boto3 client connection object
|
||||||
ct_params : The parameters for the Trail to create
|
ct_params : The parameters for the Trail to create
|
||||||
"""
|
"""
|
||||||
|
@ -278,7 +278,7 @@ def tag_trail(module, client, tags, trail_arn, curr_tags=None, dry_run=False):
|
||||||
"""
|
"""
|
||||||
Creates, updates, removes tags on a CloudTrail resource
|
Creates, updates, removes tags on a CloudTrail resource
|
||||||
|
|
||||||
module : AnisbleModule object
|
module : AnsibleModule object
|
||||||
client : boto3 client connection object
|
client : boto3 client connection object
|
||||||
tags : Dict of tags converted from ansible_dict to boto3 list of dicts
|
tags : Dict of tags converted from ansible_dict to boto3 list of dicts
|
||||||
trail_arn : The ARN of the CloudTrail to operate on
|
trail_arn : The ARN of the CloudTrail to operate on
|
||||||
|
@ -404,7 +404,7 @@ def delete_trail(module, client, trail_arn):
|
||||||
"""
|
"""
|
||||||
Delete a CloudTrail
|
Delete a CloudTrail
|
||||||
|
|
||||||
module : AnisbleModule object
|
module : AnsibleModule object
|
||||||
client : boto3 client connection object
|
client : boto3 client connection object
|
||||||
trail_arn : Full CloudTrail ARN
|
trail_arn : Full CloudTrail ARN
|
||||||
"""
|
"""
|
||||||
|
@ -418,7 +418,7 @@ def update_trail(module, client, ct_params):
|
||||||
"""
|
"""
|
||||||
Delete a CloudTrail
|
Delete a CloudTrail
|
||||||
|
|
||||||
module : AnisbleModule object
|
module : AnsibleModule object
|
||||||
client : boto3 client connection object
|
client : boto3 client connection object
|
||||||
ct_params : The parameters for the Trail to update
|
ct_params : The parameters for the Trail to update
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
- name: Add collection of users again (Idempotent)
|
- name: Add collection of users again (Idempotent)
|
||||||
ios_user:
|
ios_user:
|
||||||
aggregate:
|
aggregate:
|
||||||
- name: anisbletest2
|
- name: ansibletest2
|
||||||
- name: ansibletest3
|
- name: ansibletest3
|
||||||
authorize: yes
|
authorize: yes
|
||||||
state: present
|
state: present
|
||||||
|
|
Loading…
Reference in a new issue