base to CLI and mocp to moc
This commit is contained in:
27
tasks/arch_CLI_packages.yml
Normal file
27
tasks/arch_CLI_packages.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
- name: Update and upgrade all packages
|
||||
pacman:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
|
||||
- name: Install base CLI packages
|
||||
pacman:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- zsh
|
||||
- vim
|
||||
- tmux
|
||||
- git
|
||||
- openssh
|
||||
- htop
|
||||
- ranger
|
||||
|
||||
- name: Install extra CLI packages
|
||||
pacman:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- moc
|
||||
- newsboat
|
||||
when: not minimal
|
||||
Reference in New Issue
Block a user