22 lines
576 B
YAML
22 lines
576 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: linux specific install
|
|
block:
|
|
- ansible.builtin.include_tasks:
|
|
file: "pkgs/rust.yml"
|
|
when: pkgconfig_rust is undefined
|
|
|
|
- name: append to syspkgs and cargopkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + pkgconfig.broot.deps[ansible_os_family] }}"
|
|
cargopkgs: "{{ cargopkgs + [ 'broot' ] }}"
|
|
|
|
when:
|
|
- ansible_os_family != 'Darwin'
|
|
|
|
- name: append to syspkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + [ 'broot' ] }}"
|
|
when:
|
|
- ansible_os_family == 'Darwin'
|