Files
ansible/roles/TODO/medium-priority/system-utilities/main.yml
2026-01-09 16:21:24 +01:00

47 lines
914 B
YAML

- name: Install the etckeeer package separately from the rest of others
ansible.builtin.apt:
name:
- etckeeper
update_cache: true
become: true
- name: Run the cron job for etckeeper (to store configuration changes)
ansible.builtin.shell:
cmd: bash -x /etc/cron.daily/etckeeper
become: true
- name: Install various handy packages
ansible.builtin.apt:
name:
- gpm
- 7zip
- apt-show-versions
- apt-file
- apt-listbugs
- bash-completion
- debconf-utils
- jnettop
- jq
- lnav
- mailutils
- moreutils
- net-tools
- plocate
- powerline
- powerline-gitstatus
- pv
- socat
- sysstat
- dstat
- tig
- tree
- tshark
- unzip
- uuid
- iputils-ping
- iputils-tracepath
- nmap
- nmon
update_cache: true
become: true