12 lines
299 B
YAML
12 lines
299 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: ensure hashicorp repo is active
|
|
ansible.builtin.include_tasks:
|
|
file: "pkgs/hashicorp_repo.yml"
|
|
when: hashicorp is undefined
|
|
|
|
- name: append to pkgs
|
|
ansible.builtin.set_fact:
|
|
tappkgs: "{{ tappkgs + [ pkgconfig.nomad[ansible_system] ] }}"
|
|
|