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 global: yes
state: present state: present
- name: Update apt cache and install Git - name: Update apt cache and install Git, unclutter
apt: apt:
name: git name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: yes
loop:
- git
- unclutter
- name: Clone Git repository - name: Clone Git repository
become: yes become: yes