From a1f6d615421be64e8d47c7f8a07adfb050106c40 Mon Sep 17 00:00:00 2001
From: freezed <git-expect-noreply@freezed.me>
Date: Tue, 7 Mar 2023 23:26:27 +0100
Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20autobackup-property=20has?=
 =?UTF-8?q?=20illegal=20value:=20'on'?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

YAML works in curious ways
---
 tasks/system_cfg/backup_dest.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tasks/system_cfg/backup_dest.yml b/tasks/system_cfg/backup_dest.yml
index 8ec92eb..0e432ef 100644
--- a/tasks/system_cfg/backup_dest.yml
+++ b/tasks/system_cfg/backup_dest.yml
@@ -65,7 +65,7 @@
   vars:
     server_properties:
       - key: "autobackup:bkp_{{ hostvars[item]['inventory_hostname'] }}"
-        value: true
+        value: "true"
       - key: mountpoint
         value: "/home/{{ backup_user }}/repo/{{ hostvars[item]['inventory_hostname'] }}"
       - key: sharenfs
-- 
GitLab