fix typos in net_tools_modules (#62201)

pull/62208/head
Andrey Klychkov 5 years ago committed by John R Barker
parent dee529dc66
commit 6936187bbe

@ -224,7 +224,7 @@ EXAMPLES = r'''
dest: /tmp/afilecopy.txt
- name: < Fetch file that requires authentication.
username/password only availabe since 2.8, in older versions you need to use url_username/url_password
username/password only available since 2.8, in older versions you need to use url_username/url_password
get_url:
url: http://example.com/path/file.conf
dest: /etc/foo.conf

@ -468,7 +468,7 @@ def form_urlencoded(body):
if isinstance(body, (Mapping, Sequence)):
result = []
# Turn a list of lists into a list of tupples that urlencode accepts
# Turn a list of lists into a list of tuples that urlencode accepts
for key, values in kv_list(body):
if isinstance(values, string_types) or not isinstance(values, (Mapping, Sequence)):
values = [values]

@ -151,7 +151,7 @@ class Infinity(object):
params=None,
payload_data=None):
"""
Perform the HTTPS request by using anible get/delete method
Perform the HTTPS request by using ansible get/delete method
"""
stat_codes = [200] if stat_codes is None else stat_codes
request_url = str(self.base_url) + str(resource_url)

@ -19,7 +19,7 @@ short_description: Configure Infoblox NIOS DHCP Fixed Address
description:
- A fixed address is a specific IP address that a DHCP server
always assigns when a lease request comes from a particular
MAC address of the clien.
MAC address of the client.
- Supports both IPV4 and IPV6 internet protocols
requirements:
- infoblox-client

Loading…
Cancel
Save