2019-10-03 10:50:19 +00:00
|
|
|
---
|
2019-11-20 10:07:43 +00:00
|
|
|
- name: Install CLI packages
|
2019-10-03 10:50:19 +00:00
|
|
|
become: true
|
|
|
|
apt:
|
|
|
|
name: '{{ packages }}'
|
|
|
|
state: present
|
|
|
|
force_apt_get: yes
|
|
|
|
vars:
|
|
|
|
packages:
|
|
|
|
- apt-file
|
2019-10-04 14:38:31 +00:00
|
|
|
- ansible
|
2019-10-03 10:50:19 +00:00
|
|
|
- asciidoctor
|
2019-10-05 19:32:56 +00:00
|
|
|
- build-essential
|
2020-01-14 09:10:14 +00:00
|
|
|
- clang
|
|
|
|
- clang-format
|
2020-05-12 10:02:05 +00:00
|
|
|
- console-data
|
2020-04-21 14:17:54 +00:00
|
|
|
- curl
|
2019-10-03 10:50:19 +00:00
|
|
|
- dc
|
2019-10-05 19:32:56 +00:00
|
|
|
- devscripts
|
2019-10-03 10:50:19 +00:00
|
|
|
- dnsutils
|
2020-04-20 09:28:34 +00:00
|
|
|
- exfat-fuse
|
|
|
|
- exfat-utils
|
2019-10-03 10:50:19 +00:00
|
|
|
- git
|
2019-10-10 18:10:42 +00:00
|
|
|
- gnupg
|
2020-04-28 13:20:37 +00:00
|
|
|
- groff
|
2020-01-14 09:10:14 +00:00
|
|
|
- lldb
|
2019-10-03 10:50:19 +00:00
|
|
|
- mc
|
2020-05-05 13:10:57 +00:00
|
|
|
- nftables
|
2019-10-03 10:50:19 +00:00
|
|
|
- nmap
|
2019-10-05 19:32:56 +00:00
|
|
|
- openssh-server
|
2019-10-03 10:50:19 +00:00
|
|
|
- packagekit
|
|
|
|
- python3
|
2019-10-04 14:38:31 +00:00
|
|
|
- python3-psutil
|
2019-10-22 18:15:02 +00:00
|
|
|
- ruby-asciidoctor-pdf
|
2020-04-28 11:07:30 +00:00
|
|
|
- sipcalc
|
2019-10-03 10:50:19 +00:00
|
|
|
- sqlite3
|
|
|
|
- sudo
|
|
|
|
- tlp
|
|
|
|
- tmux
|
2019-10-21 08:09:44 +00:00
|
|
|
- vim
|
2019-10-21 08:11:03 +00:00
|
|
|
- wordgrinder-ncurses
|
2019-10-03 10:50:19 +00:00
|
|
|
- zsh
|
2020-01-12 14:50:35 +00:00
|
|
|
- name: load /etc/profile in zsh
|
2020-01-12 14:58:15 +00:00
|
|
|
become: true
|
2020-01-12 14:50:35 +00:00
|
|
|
lineinfile:
|
2020-01-12 14:58:15 +00:00
|
|
|
path: /etc/zsh/zprofile
|
2020-01-12 14:50:35 +00:00
|
|
|
line: emulate sh -c 'source /etc/profile'
|