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