📥️ Various nice improvements

This commit is contained in:
2022-12-19 13:59:24 +01:00
parent 92a48a403b
commit bc0dd6487f
16 changed files with 71 additions and 52 deletions

View File

@@ -1,3 +1,4 @@
---
- name: Install packages
when: update
block:
@@ -7,7 +8,7 @@
block:
- name: Install the good stuff (pacman)
pacman: name={{ item }} state=latest
ignore_errors: yes
ignore_errors: true
with_items:
- "{{ extra_packages }}"
- "{{ packages }}"
@@ -24,7 +25,7 @@
block:
- name: Install the good stuff (apk)
apk: name={{ item }} state=latest
ignore_errors: yes
ignore_errors: true
with_items:
- "{{ extra_packages }}"
- "{{ packages }}"
@@ -41,7 +42,7 @@
block:
- name: Install the good stuff (apt)
apt: package={{ item }} state=latest
ignore_errors: yes
ignore_errors: true
with_items:
- "{{ extra_packages }}"
- "{{ packages }}"