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-Debian.yml

15 lines
288 B
YAML
Raw Normal View History

2017-12-31 00:56:01 +01:00
---
2023-05-19 17:07:00 +02:00
- name: Update apt cache
become: true
ansible.builtin.apt:
cache_valid_time: 3600
update_cache: true
when:
- ansible_pkg_mgr == "apt"
- name: Ensure i3 packages are installed.
2021-11-08 12:28:11 +01:00
ansible.builtin.apt:
2018-11-15 15:12:44 +01:00
name: "{{ i3_packages }}"
2017-12-31 00:56:01 +01:00
state: "present"
become: true