41 lines
740 B
YAML
41 lines
740 B
YAML
---
|
|
- name: Install CLI packages
|
|
become: true
|
|
apt:
|
|
name: '{{ packages }}'
|
|
state: present
|
|
force_apt_get: yes
|
|
vars:
|
|
packages:
|
|
- apt-file
|
|
- ansible
|
|
- asciidoctor
|
|
- build-essential
|
|
- clang
|
|
- clang-format
|
|
- dc
|
|
- devscripts
|
|
- dnsutils
|
|
- git
|
|
- gnupg
|
|
- libu2f-udev
|
|
- lldb
|
|
- mc
|
|
- nmap
|
|
- openssh-server
|
|
- packagekit
|
|
- python3
|
|
- python3-psutil
|
|
- ruby-asciidoctor-pdf
|
|
- sqlite3
|
|
- sudo
|
|
- tlp
|
|
- tmux
|
|
- vim
|
|
- wordgrinder-ncurses
|
|
- zsh
|
|
- name: load /etc/profile in zsh
|
|
become: true
|
|
lineinfile:
|
|
path: /etc/zsh/zprofile
|
|
line: emulate sh -c 'source /etc/profile'
|