reorganizing configuration

- static package configuration in `vars/pkgs`
  - loaded into the variable `pkgconfig` as part of `tasks/main.yml`
This commit is contained in:
Matthew Stobbs
2025-02-12 12:52:55 -07:00
parent 9250145116
commit a3df5215b8
23 changed files with 259 additions and 226 deletions

View File

@@ -1,11 +1,5 @@
# vim: set filetype=yaml.ansible :
---
- ansible.builtin.include_vars:
file: go.yml
name: _go
- ansible.builtin.set_fact:
pkgconfig_go: "{{ _go | ansible.builtin.combine(pkgconfig.go) }}"
- name: append to pkgs
- name: Append to pkgs
ansible.builtin.set_fact:
srcpkgs: "{{ srcpkgs + [ 'go' ] }}"
src_pkgs: "{{ src_pkgs + ['go'] }}"