summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAbhijeet Kasurde <akasurde@redhat.com>2020-02-26 21:28:39 +0530
committerGitHub <noreply@github.com>2020-02-26 10:58:39 -0500
commita4da73e96172ab0722cafd56cd16b5ae50b984ee (patch)
treefe6af096e94d5b0937e15f076bfd9eed92452897 /lib
parent9c221e2bfaa292b86cbffd964fcd5fe955605a11 (diff)
downloadansible-a4da73e96172ab0722cafd56cd16b5ae50b984ee.tar.gz
misc typo fixes (#67775)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/cloud/oneandone/oneandone_load_balancer.py2
-rw-r--r--lib/ansible/modules/cloud/oneandone/oneandone_monitoring_policy.py2
-rw-r--r--lib/ansible/modules/cloud/oneandone/oneandone_private_network.py2
-rw-r--r--lib/ansible/modules/cloud/oneandone/oneandone_public_ip.py2
-rw-r--r--lib/ansible/modules/cloud/oneandone/oneandone_server.py4
-rw-r--r--lib/ansible/modules/network/nxos/storage/nxos_vsan.py8
6 files changed, 10 insertions, 10 deletions
diff --git a/lib/ansible/modules/cloud/oneandone/oneandone_load_balancer.py b/lib/ansible/modules/cloud/oneandone/oneandone_load_balancer.py
index ee83889bbd..be1d3b2162 100644
--- a/lib/ansible/modules/cloud/oneandone/oneandone_load_balancer.py
+++ b/lib/ansible/modules/cloud/oneandone/oneandone_load_balancer.py
@@ -47,7 +47,7 @@ options:
api_url:
description:
- Custom API URL. Overrides the
- ONEANDONE_API_URL environement variable.
+ ONEANDONE_API_URL environment variable.
required: false
name:
description:
diff --git a/lib/ansible/modules/cloud/oneandone/oneandone_monitoring_policy.py b/lib/ansible/modules/cloud/oneandone/oneandone_monitoring_policy.py
index 735cc848af..09161f3e96 100644
--- a/lib/ansible/modules/cloud/oneandone/oneandone_monitoring_policy.py
+++ b/lib/ansible/modules/cloud/oneandone/oneandone_monitoring_policy.py
@@ -44,7 +44,7 @@ options:
api_url:
description:
- Custom API URL. Overrides the
- ONEANDONE_API_URL environement variable.
+ ONEANDONE_API_URL environment variable.
required: false
name:
description:
diff --git a/lib/ansible/modules/cloud/oneandone/oneandone_private_network.py b/lib/ansible/modules/cloud/oneandone/oneandone_private_network.py
index 06ed26e262..883ba22c33 100644
--- a/lib/ansible/modules/cloud/oneandone/oneandone_private_network.py
+++ b/lib/ansible/modules/cloud/oneandone/oneandone_private_network.py
@@ -47,7 +47,7 @@ options:
api_url:
description:
- Custom API URL. Overrides the
- ONEANDONE_API_URL environement variable.
+ ONEANDONE_API_URL environment variable.
required: false
name:
description:
diff --git a/lib/ansible/modules/cloud/oneandone/oneandone_public_ip.py b/lib/ansible/modules/cloud/oneandone/oneandone_public_ip.py
index 86376124f9..bf432c94e4 100644
--- a/lib/ansible/modules/cloud/oneandone/oneandone_public_ip.py
+++ b/lib/ansible/modules/cloud/oneandone/oneandone_public_ip.py
@@ -43,7 +43,7 @@ options:
api_url:
description:
- Custom API URL. Overrides the
- ONEANDONE_API_URL environement variable.
+ ONEANDONE_API_URL environment variable.
required: false
reverse_dns:
description:
diff --git a/lib/ansible/modules/cloud/oneandone/oneandone_server.py b/lib/ansible/modules/cloud/oneandone/oneandone_server.py
index 92acf6fbab..36aeb7b399 100644
--- a/lib/ansible/modules/cloud/oneandone/oneandone_server.py
+++ b/lib/ansible/modules/cloud/oneandone/oneandone_server.py
@@ -39,12 +39,12 @@ options:
auth_token:
description:
- Authenticating API token provided by 1&1. Overrides the
- ONEANDONE_AUTH_TOKEN environement variable.
+ ONEANDONE_AUTH_TOKEN environment variable.
required: true
api_url:
description:
- Custom API URL. Overrides the
- ONEANDONE_API_URL environement variable.
+ ONEANDONE_API_URL environment variable.
datacenter:
description:
- The datacenter location.
diff --git a/lib/ansible/modules/network/nxos/storage/nxos_vsan.py b/lib/ansible/modules/network/nxos/storage/nxos_vsan.py
index f0cde105a2..92dd9cd3e8 100644
--- a/lib/ansible/modules/network/nxos/storage/nxos_vsan.py
+++ b/lib/ansible/modules/network/nxos/storage/nxos_vsan.py
@@ -239,7 +239,7 @@ def main():
sw_vsaninterfaces = []
if vsanremove:
- # Negetive case:
+ # Negative case:
if vsanid == '4079' or vsanid == '4094':
messages.append(str(vsanid) + " is a reserved vsan, hence cannot be removed")
continue
@@ -250,7 +250,7 @@ def main():
messages.append("There is no vsan " + str(vsanid) + " present in the switch. Hence there is nothing to delete")
continue
else:
- # Negetive case:
+ # Negative case:
if vsanid == '4079' or vsanid == '4094':
messages.append(str(vsanid) + " is a reserved vsan, and always present on the switch")
else:
@@ -261,7 +261,7 @@ def main():
messages.append("creating vsan " + str(vsanid))
if vsanname is not None:
- # Negetive case:
+ # Negative case:
if vsanid == '4079' or vsanid == '4094':
messages.append(str(vsanid) + " is a reserved vsan, and cannot be renamed")
else:
@@ -277,7 +277,7 @@ def main():
messages.append("setting vsan name to " + vsanname + " for vsan " + str(vsanid))
if vsansuspend:
- # Negetive case:
+ # Negative case:
if vsanid == '4079' or vsanid == '4094':
messages.append(str(vsanid) + " is a reserved vsan, and cannot be suspended")
else: