mirror of
https://github.com/morten-olsen/configs.git
synced 2026-02-08 00:46:24 +01:00
23 lines
424 B
YAML
23 lines
424 B
YAML
---
|
|
- name: Install dependencies
|
|
ansible.builtin.include_tasks: install.yml
|
|
tags:
|
|
- config
|
|
|
|
- name: Configure
|
|
tags:
|
|
- config
|
|
ansible.builtin.include_tasks: config.yml
|
|
|
|
- name: Setup contexts
|
|
tags:
|
|
- git
|
|
- config
|
|
include_tasks: "setup-context.yml"
|
|
vars:
|
|
name: "{{ item.key }}"
|
|
context: "{{ item.value }}"
|
|
loop: "{{ contexts | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.key }}"
|