Ansible_workstation/tasks/deb_CLI_packages.yml

38 lines
583 B
YAML
Raw Normal View History

2018-08-25 08:42:00 +00:00
---
- name: Update and upgrade all packages
apt:
update_cache: yes
upgrade: full
- name: Install base CLI packages
apt:
2020-02-24 06:06:06 +00:00
name:
- sudo
- wget
- curl
- zsh
- vim
- tmux
- ruby
- git
- tig
- openssh-server
- sshfs
- htop
- iftop
- iotop
- glances
- ranger
- rxvt-unicode-256color
2018-08-25 08:42:00 +00:00
state: present
- name: Install extra CLI packages
apt:
name: "{{ item }}"
state: present
with_items:
- moc
- newsboat
- pass
2018-08-25 09:05:56 +00:00
when: not minimal or not server