10 lines
233 B
YAML
10 lines
233 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- ansible.builtin.include_tasks:
|
|
file: "pkgs/rust.yml"
|
|
when: pkgconfig_rust is undefined
|
|
|
|
- name: add to cargopkgs
|
|
ansible.builtin.set_fact:
|
|
cargopkgs: "{{ cargopkgs + [ 'eza' ] }}"
|