flamenco/debug-job-echo.sh
2022-02-21 19:47:44 +01:00

19 lines
360 B
Bash
Executable File

#!/bin/bash
curl -X 'POST' \
'http://localhost:8080/api/jobs' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"metadata": {
"user.name": "Sybren Stüvel"
},
"name": "Talk & Sleep",
"priority": 50,
"settings": {
"sleep_duration_seconds": 3,
"message": "{blender}"
},
"type": "echo-sleep-test"
}'