From f521a2abeba8562ebcac7c597202fda880da2c7e Mon Sep 17 00:00:00 2001 From: Fenris Wolf Date: Tue, 31 Mar 2026 21:51:02 +0200 Subject: [PATCH] [int] --- roles/heimdall-order/tasks/main.json | 6 +++--- roles/heimdall-program/tasks/main.json | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/heimdall-order/tasks/main.json b/roles/heimdall-order/tasks/main.json index eda03ae..5d83eee 100644 --- a/roles/heimdall-order/tasks/main.json +++ b/roles/heimdall-order/tasks/main.json @@ -12,7 +12,7 @@ "name": "file", "become": true, "ansible.builtin.copy": { - "content": "{{cfg_heimdall_order.conf}} | json", + "content": "{{cfg_heimdall_order.conf}} | to_nice_json", "dest": "{{cfg_heimdall_order.directory}}/{{cfg_heimdall_order.name}}.hmdl.json" } }, @@ -24,12 +24,12 @@ "user": "{{cfg_heimdall_order.user}}", "disabled": false, "name": "heimdall:{{cfg_heimdall_order.name}}", - "minute": "*/{{cfg_heimdall_program.rate | string}}", + "minute": "*/{{cfg_heimdall_order.rate | string}}", "hour": "*", "day": "*", "month": "*", "weekday": "*", - "job": "{{cfg_heimdall_program.directory}}/heimdall {{cfg_heimdall_order.directory}}/{{cfg_heimdall_order.name}}.hmdl.json --mutex-path=/tmp/heimdall-{{cfg_heimdall_order.name}}.lock" + "job": "{{cfg_heimdall_order.directory}}/heimdall {{cfg_heimdall_order.directory}}/{{cfg_heimdall_order.name}}.hmdl.json --mutex-path=/tmp/heimdall-{{cfg_heimdall_order.name}}.lock" } } ] diff --git a/roles/heimdall-program/tasks/main.json b/roles/heimdall-program/tasks/main.json index bef0f98..a61ea71 100644 --- a/roles/heimdall-program/tasks/main.json +++ b/roles/heimdall-program/tasks/main.json @@ -8,7 +8,8 @@ "git", "make", "rsync", - "nodejs" + "nodejs", + "node-typescript" ] } },