add nwg-hello

This commit is contained in:
Matthew Stobbs
2025-03-11 21:20:14 -06:00
parent a7bb81db9c
commit a9d817ce05
6 changed files with 181 additions and 1 deletions

15
tasks/pkgs/nwg_hello.yml Normal file
View File

@@ -0,0 +1,15 @@
- name: Add nwg-hello
when:
- nwg_hello_configured is undefined
block:
- name: Load nwg-hello config
ansible.builtin.include_tasks:
file: config/nwg_hello.yml
- name: Append nwg-hello build_deps to sys_pkg
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + nwg_hello.build_deps }}"
- name: Append nwg-hello to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['nwg_hello'] }}"