23 lines
590 B
YAML
23 lines
590 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add uwsm
|
|
when:
|
|
- ansible_os_family != 'Alpine'
|
|
- ansible_os_family != 'Darwin'
|
|
block:
|
|
- name: Load uwsm config
|
|
ansible.builtin.include_tasks:
|
|
file: config/uwsm.yml
|
|
|
|
- name: Append uwsm build_deps to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + uwsm.build_deps + uwsm.deps }}"
|
|
|
|
- name: Append uwsm to pkg_src
|
|
ansible.builtin.set_fact:
|
|
pkg_src: "{{ pkg_src + ['uwsm'] }}"
|
|
|
|
- name: Set uwsm_configured
|
|
ansible.builtin.set_fact:
|
|
uwsm_configured: true
|