This commit is contained in:
fenris 2026-03-31 21:51:02 +02:00
parent fe46caf25d
commit f521a2abeb
2 changed files with 5 additions and 4 deletions

View file

@ -12,7 +12,7 @@
"name": "file", "name": "file",
"become": true, "become": true,
"ansible.builtin.copy": { "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" "dest": "{{cfg_heimdall_order.directory}}/{{cfg_heimdall_order.name}}.hmdl.json"
} }
}, },
@ -24,12 +24,12 @@
"user": "{{cfg_heimdall_order.user}}", "user": "{{cfg_heimdall_order.user}}",
"disabled": false, "disabled": false,
"name": "heimdall:{{cfg_heimdall_order.name}}", "name": "heimdall:{{cfg_heimdall_order.name}}",
"minute": "*/{{cfg_heimdall_program.rate | string}}", "minute": "*/{{cfg_heimdall_order.rate | string}}",
"hour": "*", "hour": "*",
"day": "*", "day": "*",
"month": "*", "month": "*",
"weekday": "*", "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"
} }
} }
] ]

View file

@ -8,7 +8,8 @@
"git", "git",
"make", "make",
"rsync", "rsync",
"nodejs" "nodejs",
"node-typescript"
] ]
} }
}, },