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

50 lines
856 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
2020-01-14 09:10:14 +00:00
- clang
- clang-format
2020-05-12 10:02:05 +00:00
- console-data
2020-06-05 12:15:23 +00:00
- cowsay
2020-04-21 14:17:54 +00:00
- curl
- dc
- dnsutils
2020-04-20 09:28:34 +00:00
- exfat-fuse
- exfat-utils
2020-06-05 12:15:23 +00:00
- figlet
- 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
2020-06-23 10:46:29 +00:00
- lynx
- 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
2020-06-22 22:32:49 +00:00
- sshpass
- 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:04:51 +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'