mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
added example for those with ansible_connection set
This commit is contained in:
parent
d325fa00cc
commit
db15528de3
1 changed files with 10 additions and 0 deletions
|
@ -159,6 +159,16 @@ EXAMPLES = r'''
|
|||
search_regex: OpenSSH
|
||||
delay: 10
|
||||
connection: local
|
||||
|
||||
# Same as above but you normally have ansible_connection set in inventory, which overrides 'connection'
|
||||
- name: Wait 300 seconds for port 22 to become open and contain "OpenSSH"
|
||||
wait_for:
|
||||
port: 22
|
||||
host: '{{ (ansible_ssh_host|default(ansible_host))|default(inventory_hostname) }}'
|
||||
search_regex: OpenSSH
|
||||
delay: 10
|
||||
vars:
|
||||
ansible_connection: local
|
||||
'''
|
||||
|
||||
import binascii
|
||||
|
|
Loading…
Reference in a new issue