ansible/roles/base/tasks/main.yml

38 lines
619 B
YAML
Raw Normal View History

2023-04-11 02:55:24 +00:00
- name: set up common tools
become: true
ansible.builtin.apt: name={{ item }} state=present
with_items:
- curl
- htop
- iftop
- iotop
- imagemagick
- keychain
2023-04-11 20:50:16 +00:00
- libarchive-tools
2023-04-11 02:55:24 +00:00
- mg
2023-04-14 18:08:16 +00:00
- nmap
2023-04-11 05:48:13 +00:00
- nvi
2023-04-11 02:55:24 +00:00
- pandoc
- par
- powertop
- pwgen
- ranger
- rlwrap
- rsync
- silversearcher-ag
- sudo
- tcpdump
- time
- tmux
- tree
- unzip
- zsh
- name: set up tools specifically for headless systems
when: headless
become: true
ansible.builtin.apt: name={{ item }} state=present
with_items:
- emacs-nox
- vim-nox