add unclutter to ansible

This commit is contained in:
Tomáš Mládek 2024-09-18 22:59:26 +02:00
parent 7dafc80dbe
commit a3ab71aa36

View file

@ -33,11 +33,14 @@
global: yes
state: present
- name: Update apt cache and install Git
- name: Update apt cache and install Git, unclutter
apt:
name: git
name: "{{ item }}"
state: present
update_cache: yes
loop:
- git
- unclutter
- name: Clone Git repository
become: yes