Ansible_workstation/combava.yml

34 lines
617 B
YAML
Raw Permalink Normal View History

2022-01-08 05:46:12 +00:00
---
- name: Combava
hosts: localhost
become: true
vars_files:
- vars/users.yml
2022-01-12 08:39:09 +00:00
- vars/combava.yml
2022-01-08 05:46:12 +00:00
pre_tasks:
- name: update pacman cache
community.general.pacman:
update_cache: yes
2022-01-12 08:39:09 +00:00
tasks:
- name: Set up aur env
2022-01-12 14:04:10 +00:00
include_role:
name: arch_aur
2022-01-12 08:39:09 +00:00
- name: Install core packages
2022-01-12 14:04:10 +00:00
include_role:
name: core
2022-01-12 08:39:09 +00:00
- name: Set up workstation
2022-01-12 14:04:10 +00:00
include_role:
name: workstation
2022-01-12 08:39:09 +00:00
- name: Include user
include_role:
name: "user"
loop:
- "{{ me }}"
- "{{ admin }}"
loop_control:
loop_var: user