Skip to content
Snippets Groups Projects
Commit fcfd6206 authored by Thomas Schneider's avatar Thomas Schneider
Browse files

shell: Install btop only on Debian ≥ bookworm

parent 0fd16aea
No related branches found
No related tags found
1 merge request!32shell: Install btop only on Debian ≥ bookworm
Pipeline #7836 passed
......@@ -19,7 +19,6 @@
name:
- aptitude
- atop
- btop
- build-essential
- curl
- dnsutils
......@@ -58,7 +57,7 @@
- packages
- shell
- name: ensure installation of modern additional software
- name: ensure installation of modern additional software (buster)
apt:
name:
- ripgrep
......@@ -69,6 +68,16 @@
- packages
- shell
- name: ensure installation of modern additional software (bookworm)
apt:
name:
- btop
state: present
when: ansible_distribution_major_version|int(default=99) >= 12
tags:
- packages
- shell
- name: ensure we have an up-to-date version of grml-zsh-config
# Skip risky-file-permissions check because this runs locally, and we don’t
# even know who the local user running Ansible is.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment