Ansible_workstation/tasks/arch_base_packages.yml

20 lines
270 B
YAML
Raw Normal View History

2018-08-22 18:42:52 +00:00
---
- name: Update and upgrade all packages
pacman:
update_cache: yes
upgrade: yes
2018-08-22 19:16:56 +00:00
- name: Install base packages
2018-08-22 18:42:52 +00:00
pacman:
2018-08-22 19:16:56 +00:00
name: "{{ item }}"
2018-08-22 18:42:52 +00:00
state: present
2018-08-22 19:16:56 +00:00
with_items:
- zsh
- vim
2018-08-22 20:54:51 +00:00
- tmux
- git
- openssh
- htop
- ranger
2018-08-22 18:42:52 +00:00