weitere Aenderungen

This commit is contained in:
2021-02-25 09:37:42 +01:00
parent db70a6c417
commit 17b4ed6ef6
50 changed files with 946 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
# note: snap packages not automated in arch yet, snapd is not available in repo
- name: software | chromium | install snap package
tags: packages,chromium,snap,workstation-packages
snap:
name: chromium
state: present
when:
- ansible_distribution != "Archlinux"
- chromium is defined
- chromium == true
- name: software | chromium | install distro package (arch)
tags: packages,chromium,snap,workstation-packages
package:
name: chromium
state: latest
when:
- ansible_distribution == "Archlinux"
- chromium is defined
- chromium == true