From e360a68a4d948e37fb24c31754505744e9a72652 Mon Sep 17 00:00:00 2001 From: Alexander Meindl Date: Wed, 20 Nov 2024 14:21:49 +0100 Subject: [PATCH] add build-essential for btop from source --- roles/diagnostic/tasks/setup_btop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/diagnostic/tasks/setup_btop.yml b/roles/diagnostic/tasks/setup_btop.yml index 71a325a..22d5192 100644 --- a/roles/diagnostic/tasks/setup_btop.yml +++ b/roles/diagnostic/tasks/setup_btop.yml @@ -62,6 +62,11 @@ not btop_installed.stat.exists | bool or not btop_static_source_file_exists.stat.exists block: + - name: Be sure build-essential package is installed + ansible.builtin.apt: + name: build-essential + state: present + - name: Remove previous btop source directory ansible.builtin.file: path: "{{ btop_source_path }}"