workstation/roles/ubuntu/tasks/packages-cli.yml

43 lines
785 B
YAML
Raw Normal View History

---
- name: Install CLI packages
become: true
2021-02-19 20:32:22 +00:00
ansible.builtin.apt:
name: '{{ packages }}'
state: present
force_apt_get: yes
vars:
packages:
- apt-file
2019-10-04 14:38:31 +00:00
- ansible
- asciidoctor
2019-10-05 19:32:56 +00:00
- build-essential
2020-01-14 09:10:14 +00:00
- clang
- clang-format
2020-10-15 20:35:20 +00:00
- curl
- dc
2019-10-05 19:32:56 +00:00
- devscripts
- dnsutils
- git
2019-10-10 18:10:42 +00:00
- gnupg
2020-01-14 17:10:51 +00:00
- libu2f-udev
2020-01-14 09:10:14 +00:00
- lldb
- mc
- nmap
2019-10-05 19:32:56 +00:00
- openssh-server
- packagekit
- python3
2019-10-04 14:38:31 +00:00
- python3-psutil
- ruby-asciidoctor-pdf
- sqlite3
- sudo
- tlp
- tmux
2019-10-21 08:09:44 +00:00
- vim
2019-10-21 08:11:03 +00:00
- wordgrinder-ncurses
- zsh
2020-06-18 13:03:42 +00:00
- name: Load /etc/profile in zsh
2020-01-13 08:37:00 +00:00
become: true
2021-02-19 20:32:22 +00:00
ansible.builtin.lineinfile:
2020-01-13 08:37:00 +00:00
path: /etc/zsh/zprofile
line: emulate sh -c 'source /etc/profile'