1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_i3wm.git synced 2024-08-16 10:09:53 +02:00
ansible_role_i3wm/tasks/setup-Archlinux.yml

8 lines
175 B
YAML
Raw Normal View History

2018-11-17 22:46:13 +01:00
---
2023-10-28 17:56:01 +02:00
- name: Ensure i3 packages are installed # noqa: H1901
2023-05-19 17:07:00 +02:00
community.general.pacman:
2018-11-17 22:46:13 +01:00
name: "{{ i3_packages }}"
2019-04-24 12:43:25 +02:00
state: present
2021-02-26 17:31:17 +01:00
update_cache: true
2018-11-17 22:46:13 +01:00
become: true