mirror of https://github.com/ansible/ansible.git
parent
c45d193af4
commit
9b28f1f5d9
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- Fix incorrect "Could not match supplied host pattern" warning (https://github.com/ansible/ansible/issues/66764)
|
@ -0,0 +1,13 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Group
|
||||
group_by:
|
||||
key: test_{{ inventory_hostname }}
|
||||
|
||||
- hosts: test_localhost
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Print
|
||||
import_tasks: tasks.yml
|
@ -0,0 +1,3 @@
|
||||
- name: test
|
||||
debug:
|
||||
msg: hello
|
Loading…
Reference in New Issue