18 lines
407 B
YAML
18 lines
407 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add tidy
|
|
when:
|
|
- tidy_configured is undefined
|
|
block:
|
|
- name: Load tidy config
|
|
ansible.builtin.include_tasks:
|
|
file: config/tidy.yml
|
|
|
|
- name: Append to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + tidy.pkgs }}"
|
|
|
|
- name: Set tidy_configured
|
|
ansible.builtin.set_fact:
|
|
tidy_configured: true
|