split the ansible agnostic packages installation into cli and gui packages
This commit is contained in:
parent
34ddb9c568
commit
d497490285
3 changed files with 29 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
- name: Install os-agnostic packages
|
||||
- name: Install CLI os-agnostic packages
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
|
|
@ -8,13 +8,24 @@
|
|||
- fish
|
||||
- rofi
|
||||
- automake
|
||||
- libtool
|
||||
- mpv
|
||||
- ncdu
|
||||
- xclip
|
||||
state: present
|
||||
tags:
|
||||
- agnostic
|
||||
- cli
|
||||
|
||||
- name: Install GUI os-agnostic packages
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- mpv
|
||||
- rofi
|
||||
state: present
|
||||
tags:
|
||||
- agnostic
|
||||
- gui
|
||||
|
||||
|
||||
- name: Install Arch packages
|
||||
when: ansible_os_family == "Archlinux"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue