12 lines
501 B
YAML
12 lines
501 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set nwg-hello configuration
|
|
ansible.builtin.set_fact:
|
|
nwg_hello:
|
|
vers: "{{ pkgconfig.nwg_hello.version }}"
|
|
git_repo: "{{ pkgconfig.nwg_hello.git_repo }}"
|
|
installed_files: "{{ pkgconfig.nwg_hello.build_installed_files }}"
|
|
git_path: "{{ d_tempdir.path }}/nwg-hello"
|
|
build_deps: "{{ pkgconfig.nwg_hello.bulid_deps[ansible_os_family] }}"
|
|
clean: "{{ pkgconfig_nwg_hello_clean | default(package_default_clean_src) }}"
|