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