Ansible_workstation/roles/workstation/molecule/default/converge.yml

24 lines
404 B
YAML
Raw Normal View History

2022-01-05 13:03:11 +00:00
---
- name: Converge
hosts: all
become: true
2022-01-10 04:26:00 +00:00
vars:
pacman_pkgs:
- "{{ pacman_utils }}"
aur_pkgs:
- "{{ aur_utils }}"
2022-01-10 04:26:00 +00:00
pre_tasks:
- name: Update cache
2022-01-10 04:26:00 +00:00
community.general.pacman:
update_cache: true
- name: set AUR
include_role:
name: "../arch_aur"
2022-01-05 13:03:11 +00:00
tasks:
- name: "Include workstation"
include_role:
name: "workstation"