mirror of
https://github.com/morten-olsen/configs.git
synced 2026-02-08 00:46:24 +01:00
23 lines
428 B
YAML
23 lines
428 B
YAML
---
|
|
- name: Install context dependencies
|
|
ansible.builtin.include_tasks: install.yml
|
|
loop: "{{ contexts }}"
|
|
loop_control:
|
|
loop_var: context
|
|
tags:
|
|
- config
|
|
|
|
- name: Install atuin
|
|
tags:
|
|
- install
|
|
ansible.builtin.include_role:
|
|
name: software_atuin
|
|
|
|
- name: Configure contexts
|
|
ansible.builtin.include_tasks: config.yml
|
|
loop: "{{ contexts }}"
|
|
loop_control:
|
|
loop_var: context
|
|
tags:
|
|
- config
|