19 lines
448 B
YAML
19 lines
448 B
YAML
---
|
|
- name: append to syspkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + [ 'tlrc' ] }}"
|
|
when:
|
|
- ansible_os_family == 'Darwin'
|
|
|
|
- name: linux specific install
|
|
block:
|
|
- ansible.builtin.include_tasks:
|
|
file: "pkgs/rust.yml"
|
|
when: pkgconfig_rust is undefined
|
|
|
|
- name: add to cargopkgs
|
|
ansible.builtin.set_fact:
|
|
cargopkgs: "{{ cargopkgs + [ 'tlrc' ] }}"
|
|
when:
|
|
- ansible_os_family != 'Darwin'
|