mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
300 B
YAML
15 lines
300 B
YAML
7 years ago
|
- include_vars: '{{ item }}'
|
||
|
with_first_found:
|
||
|
- files:
|
||
|
- '{{ ansible_os_family }}.yml'
|
||
|
- 'default.yml'
|
||
|
paths: '../vars'
|
||
|
|
||
|
- template:
|
||
|
src: dummy_command
|
||
|
dest: '/usr/bin/dummy{{ item }}'
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0755
|
||
|
with_sequence: start=1 end=4
|