This commit is contained in:
fenris 2026-03-31 21:56:12 +02:00
parent c4e3ef7743
commit da140e11e0
3 changed files with 16 additions and 10 deletions

View file

@ -7,22 +7,27 @@
"type": "string", "type": "string",
"default": "heimdall" "default": "heimdall"
}, },
"directory": { "directory_program": {
"nullable": false,
"type": "string",
"default": "/opt/heimdall"
},
"directory_conf": {
"nullable": false, "nullable": false,
"type": "string", "type": "string",
"default": "/etc/heimdall" "default": "/etc/heimdall"
}, },
"rate": {
"nullable": false,
"type": "integer",
"default": 15
},
"name": { "name": {
"nullable": false, "nullable": false,
"type": "string" "type": "string"
}, },
"conf": { "conf": {
"type": "any" "type": "any"
},
"rate": {
"nullable": false,
"type": "integer",
"default": 15
} }
}, },
"additionalProperties": false, "additionalProperties": false,

View file

@ -1,7 +1,8 @@
{ {
"cfg_heimdall_order_defaults": { "cfg_heimdall_order_defaults": {
"user": "heimdall", "user": "heimdall",
"directory": "/etc/heimdall", "directory_program": "/opt/heimdall",
"directory_conf": "/etc/heimdall",
"rate": 15 "rate": 15
} }
} }

View file

@ -4,7 +4,7 @@
"become": true, "become": true,
"ansible.builtin.file": { "ansible.builtin.file": {
"state": "directory", "state": "directory",
"path": "{{cfg_heimdall_order.directory}}", "path": "{{cfg_heimdall_order.directory_conf}}",
"owner": "{{cfg_heimdall_order.user}}" "owner": "{{cfg_heimdall_order.user}}"
} }
}, },
@ -13,7 +13,7 @@
"become": true, "become": true,
"ansible.builtin.copy": { "ansible.builtin.copy": {
"content": "{{cfg_heimdall_order.conf | to_nice_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_conf}}/{{cfg_heimdall_order.name}}.hmdl.json"
} }
}, },
{ {
@ -29,7 +29,7 @@
"day": "*", "day": "*",
"month": "*", "month": "*",
"weekday": "*", "weekday": "*",
"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" "job": "{{cfg_heimdall_order.directory_program}}/heimdall {{cfg_heimdall_order.directory_conf}}/{{cfg_heimdall_order.name}}.hmdl.json --mutex-path=/tmp/heimdall-{{cfg_heimdall_order.name}}.lock"
} }
} }
] ]