14 lines
351 B
YAML
14 lines
351 B
YAML
- name: "Create hosts-init.inv and init.yml form templates"
|
|
hosts: "localhost"
|
|
connection: "local"
|
|
tasks:
|
|
- name: "Template hosts-init.inv"
|
|
template:
|
|
src: "templates/hosts-init.inv.j2"
|
|
dest: "hosts-init.inv"
|
|
- name: "Template init.yml"
|
|
template:
|
|
src: "templates/init.yml.j2"
|
|
dest: "init.yml"
|
|
|