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