This commit is contained in:
2024-10-08 08:45:19 +02:00
parent e0f124661d
commit c8549b6142
18 changed files with 135 additions and 21 deletions

View File

@@ -1,10 +1,5 @@
---
- name: "Unload vars : {{ context }}"
ansible.builtin.include_vars: ../vars/empty.yml
tags:
- install
- name: "Load vars : {{ context }}"
- name: "Load vars"
ansible.builtin.include_vars: "{{ item }}"
tags:
- install
@@ -14,13 +9,14 @@
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
- default.yml
paths: ../vars/{{ context }}
paths: ../vars
skip: true
- name: "Install dependencies : {{ context }}"
- name: "Install dependencies"
tags:
- install
when: terminal_pkgs
become: "{{ install_with_root }}"
ansible.builtin.package:
name: "{{ terminal_pkgs }}"