From ef2e69c3f8991f18e362ff85f1a8f6b00d413807 Mon Sep 17 00:00:00 2001 From: MeinholC Date: Tue, 14 Apr 2026 21:38:59 +0200 Subject: [PATCH] =?UTF-8?q?bpytop.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bpytop.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bpytop.yml diff --git a/bpytop.yml b/bpytop.yml new file mode 100644 index 0000000..f557077 --- /dev/null +++ b/bpytop.yml @@ -0,0 +1,15 @@ +--- +- name: Install bpytop from distro repo + hosts: Server # ggf. anpassen + become: true + + tasks: + - name: Update apt cache + ansible.builtin.apt: + update_cache: yes + cache_valid_time: 3600 + + - name: Install bpytop + ansible.builtin.apt: + name: bpytop + state: present \ No newline at end of file