mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Infoblox should be run locally (#35390)
* Infoblox should be run locally * use connection: local
This commit is contained in:
@@ -72,6 +72,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: update the comment for dns view
|
||||
nios_dns_view:
|
||||
@@ -82,6 +83,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: remove the dns view instance
|
||||
nios_dns_view:
|
||||
@@ -91,6 +93,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
||||
@@ -115,6 +115,8 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: add a comment to an existing host record
|
||||
nios_host_record:
|
||||
name: host.ansible.com
|
||||
@@ -126,6 +128,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: remove a host record from the system
|
||||
nios_host_record:
|
||||
@@ -135,6 +138,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
||||
@@ -110,6 +110,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: set dhcp options for a network
|
||||
nios_network:
|
||||
@@ -123,6 +124,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: remove a network
|
||||
nios_network:
|
||||
@@ -132,6 +134,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
||||
@@ -67,6 +67,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: update the comment for network view
|
||||
nios_network_view:
|
||||
@@ -77,6 +78,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: remove the network view
|
||||
nios_network_view:
|
||||
@@ -86,6 +88,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
||||
@@ -102,6 +102,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: update the comment and ext attributes for an existing zone
|
||||
nios_zone:
|
||||
@@ -114,6 +115,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
|
||||
- name: remove the dns zone
|
||||
nios_zone:
|
||||
@@ -123,6 +125,7 @@ EXAMPLES = '''
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
username: admin
|
||||
password: admin
|
||||
connection: local
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
||||
@@ -76,4 +76,6 @@ options:
|
||||
variable.
|
||||
required: false
|
||||
default: 1.4
|
||||
notes:
|
||||
- "This module must be run locally, which can be achieved by specifying C(connection: local)."
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user