VZ
Size: a a a
VZ
VZ
VZ
R
R
VZ
R
PG
- name: test
hosts: all
become: yes
gather_facts: no
tasks:
shell: ls
ansible-playbook test.yml -i myhost.com, --user ansible --ask-become-pass --ask-pass
The offending line appears to be:
- name: Check port
hosts: all
^ here
tasks:
- shell: ls
A
tasks:
- shell: ls
PG
TG
---
- name: test
hosts: all
gather_facts: no
ansible.builtin.shell: ls
The offending line appears to be:
---
- name: check port
^ here
TG
TG
PG
---
- name: test
hosts: all
gather_facts: no
ansible.builtin.shell: ls
The offending line appears to be:
---
- name: check port
^ here
DD
(collections) bash-4.2# ansible-config dump | grep -i coll
COLLECTIONS_ON_ANSIBLE_VERSION_MISMATCH(default) = warning
COLLECTIONS_PATHS(/etc/ansible/ansible.cfg) = ['/var/lib/awx/.ansible/collections']
COLLECTIONS_SCAN_SYS_PATH(default) = True
(collections) bash-4.2# ansible-galaxy collection list
# /var/lib/awx/.ansible/collections/ansible_collections
Collection Version
----------------------- -------
community.vmware 1.5.1
community.zabbix 1.1.0
ibm.spectrum_virtualize 1.3.0
DD
A
SP
TG