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

14 lines
306 B
YAML

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