Files
ansible_role_package/tasks/pkgs/stow.yml
2025-03-03 12:04:09 -07:00

14 lines
309 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Add stow
when:
- stow_configured is undefined
block:
- name: Append to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['stow'] }}"
- name: Set stow_configured
ansible.builtin.set_fact:
stow_configured: true