# vim: set filetype=yaml.ansible : --- - name: append to syspkgs ansible.builtin.set_fact: syspkgs: "{{ syspkgs + [ 'sd' ] }}" 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 + [ 'sd' ] }}" when: - ansible_os_family != 'Darwin'