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

51 lines
891 B
YAML
Raw Normal View History

---
- name: Install CLI packages
become: true
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-05-12 10:02:05 +00:00
- console-data
2020-04-21 14:17:54 +00:00
- curl
- dc
- debhelper
2019-10-05 19:32:56 +00:00
- devscripts
- dh-make
- dnsutils
2020-04-20 09:28:34 +00:00
- exfat-fuse
- exfat-utils
- fakeroot
- 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
- mc
2020-05-05 13:10:57 +00:00
- nftables
- 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
2020-04-28 11:07:30 +00:00
- sipcalc
- 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-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'