update packages

This commit is contained in:
Grégory Lebreton 2025-07-25 11:05:56 +02:00
parent 0a9e2a8e31
commit 12aeb27b19

View File

@ -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