From 70b0ecc141a303f7dc47805d67b20ee68c0d271f Mon Sep 17 00:00:00 2001
From: Michael Grote <michael.grote@posteo.de>
Date: Tue, 29 Oct 2024 21:05:21 +0100
Subject: [PATCH] sdfg

---
 roles/mgrote_rsync/tasks/main.yml | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/roles/mgrote_rsync/tasks/main.yml b/roles/mgrote_rsync/tasks/main.yml
index 2edf0e8e..ce731dc4 100644
--- a/roles/mgrote_rsync/tasks/main.yml
+++ b/roles/mgrote_rsync/tasks/main.yml
@@ -2,20 +2,20 @@
 - name: Block
   when: rsync_host_role is defined
   block:
-  - name: Include user tasks
-    ansible.builtin.include_tasks: user.yml
+    - name: Include user tasks
+      ansible.builtin.include_tasks: user.yml
 
-  - name: Ensure packages are present
-    become: true
-    ansible.builtin.package:
-      name:
-        - rsync
-      state: present
+    - name: Ensure packages are present
+      become: true
+      ansible.builtin.package:
+        name:
+          - rsync
+        state: present
 
-  - name: Include source tasks
-    ansible.builtin.include_tasks: source.yml
-    when: "'source' in rsync_host_role"
+    - name: Include source tasks
+      ansible.builtin.include_tasks: source.yml
+      when: "'source' in rsync_host_role"
 
-  - name: Include destination tasks
-    ansible.builtin.include_tasks: destination.yml
-    when: "'destination' in rsync_host_role"
+    - name: Include destination tasks
+      ansible.builtin.include_tasks: destination.yml
+      when: "'destination' in rsync_host_role"