mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix spelling mistakes (comments only) (#25564)
Original Author : klemens <ka7@github.com> Taking over previous PR as per https://github.com/ansible/ansible/pull/23644#issuecomment-307334525 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
John R Barker
parent
460d932aa8
commit
b89cb95609
@@ -7,7 +7,7 @@
|
||||
# - A hostname/ip can be a member of multiple groups
|
||||
#
|
||||
# In the /etc/ansible/hosts file u have to enter [cnos_vlan_sample] tag
|
||||
# Following you should specify IP Adresses details
|
||||
# Following you should specify IP Addresses details
|
||||
# Please change <username> and <password> with appropriate value for your switch.
|
||||
|
||||
[cnos_vlan_sample]
|
||||
|
||||
@@ -141,7 +141,7 @@
|
||||
- asyncresult.finished == 1
|
||||
- asyncresult.changed == false
|
||||
- asyncresult | failed == true
|
||||
# TODO: reenable after catastrophic failure behavior is cleaned up
|
||||
# TODO: re-enable after catastrophic failure behavior is cleaned up
|
||||
# - asyncresult.msg is search('failing via exception')
|
||||
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
register: actual
|
||||
failed_when: actual.msg != 'Argument path ' + win_output_dir + '\\win_find\\single\\large.ps1 is a file not a directory'
|
||||
|
||||
- name: expect failure whe path is set to a non existant folder
|
||||
- name: expect failure whe path is set to a non existent folder
|
||||
win_find:
|
||||
paths: "{{win_output_dir}}\\win_find\\thisisafakefolder"
|
||||
register: actual
|
||||
|
||||
@@ -113,12 +113,12 @@
|
||||
that:
|
||||
- "actual == expected"
|
||||
|
||||
- name: get non-existant reg key
|
||||
- name: get non-existent reg key
|
||||
win_reg_stat:
|
||||
path: HKCU:\Test\Thispathwillneverexist
|
||||
register: actual
|
||||
|
||||
- name: set expected value for non-existant reg key
|
||||
- name: set expected value for non-existent reg key
|
||||
set_fact:
|
||||
expected:
|
||||
changed: false
|
||||
@@ -298,13 +298,13 @@
|
||||
that:
|
||||
- "actual == expected"
|
||||
|
||||
- name: get non-existance property
|
||||
- name: get non-existence property
|
||||
win_reg_stat:
|
||||
path: HKCU:\Test\single
|
||||
name: doesnotexist
|
||||
register: actual
|
||||
|
||||
- name: set expected non-existance property
|
||||
- name: set expected non-existence property
|
||||
set_fact:
|
||||
expected:
|
||||
changed: false
|
||||
|
||||
@@ -497,7 +497,7 @@
|
||||
desktop_interact: True
|
||||
register: win_service_local_system_desktop
|
||||
|
||||
- name: check that the service has been set to Local Sytem with desktop interaction
|
||||
- name: check that the service has been set to Local System with desktop interaction
|
||||
assert:
|
||||
that:
|
||||
- "win_service_local_system_desktop|changed"
|
||||
@@ -791,7 +791,7 @@
|
||||
name: TestServiceDependency
|
||||
state: started
|
||||
|
||||
- name: wait 5 seconds for service to propogate service startup
|
||||
- name: wait 5 seconds for service to propagate service startup
|
||||
pause:
|
||||
seconds: 5
|
||||
|
||||
|
||||
Reference in New Issue
Block a user