From 12aeb27b19fbf311f09b3e42b0a28dc36816a65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Lebreton?= Date: Fri, 25 Jul 2025 11:05:56 +0200 Subject: [PATCH] update packages --- tasks/basics_install.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/tasks/basics_install.yml b/tasks/basics_install.yml index 1dac4a4..bc8b9e0 100644 --- a/tasks/basics_install.yml +++ b/tasks/basics_install.yml @@ -1,4 +1,3 @@ ---- - name: Basics install apt: @@ -7,9 +6,27 @@ - wget - curl - git + - vim + - htop + - btop + - net-tools + - unzip + - gnupg + - lsb-release + - ca-certificates + - software-properties-common + - apt-transport-https + - bash-completion state: present update_cache: yes +- name: Ensure man pages are available + apt: + name: man-db + state: present + - name: Deactivate sleep / hibernate ansible.builtin.command: cmd: systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target + become: true +