Ansible_workstation/tasks/deb_CLI_packages.yml

36 lines
607 B
YAML
Raw Normal View History

2018-08-25 08:42:00 +00:00
---
2020-03-17 04:44:48 +00:00
- name: deb_CLI_packages -- Update and upgrade all packages
2018-08-25 08:42:00 +00:00
apt:
update_cache: yes
upgrade: full
2020-03-17 04:44:48 +00:00
- name: deb_CLI_packages -- Install base CLI packages
2018-08-25 08:42:00 +00:00
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
- rxvt-unicode-256color
2018-08-25 08:42:00 +00:00
state: present
2020-03-17 04:44:48 +00:00
- name: deb_CLI_packages -- Install extra CLI packages
2018-08-25 08:42:00 +00:00
apt:
2020-03-17 05:18:40 +00:00
name:
- moc
- newsboat
- pass
2018-08-25 08:42:00 +00:00
state: present
2018-08-25 09:05:56 +00:00
when: not minimal or not server