From 7e734ca002f3c2a1707160933dbc74f82394be29 Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 1 Nov 2023 16:29:04 +0100 Subject: [PATCH] Use raw module for storage boxes because there is no python interpreter --- tasks/storage_box.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/storage_box.yml b/tasks/storage_box.yml index 8c08bf7..a347dc3 100644 --- a/tasks/storage_box.yml +++ b/tasks/storage_box.yml @@ -6,7 +6,7 @@ time: "{{ '%H:%M:%S' | strftime }}" - name: "Storage Box | Scrap free space" - ansible.builtin.command: "df -h" + ansible.builtin.raw: "df -h" register: command_out changed_when: false