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