Ansible_workstation/tasks/deb_CLI_packages.yml

38 lines
565 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:
name: "{{ item }}"
state: present
with_items:
2018-08-25 08:54:02 +00:00
- sudo
2018-08-25 08:42:00 +00:00
- wget
- zsh
- vim
- tmux
- ruby
- git
2018-08-25 16:04:14 +00:00
- tig
- openssh-server
2018-08-25 08:42:00 +00:00
- sshfs
- htop
2018-10-18 17:37:14 +00:00
- iftop
2018-08-25 08:42:00 +00:00
- iotop
- glances
- ranger
2018-08-28 10:08:50 +00:00
- rxvt-unicode-256color
2018-08-25 08:42:00 +00:00
- 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