modifying scheduler

This commit is contained in:
ION606
2025-09-15 10:45:38 -04:00
parent 9153c3b1c6
commit a7f6c9edb5
9 changed files with 1264 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"items": [
{
"name": "echo",
"image": "bash:5.2",
"command": [
"-lc"
],
"args": [
"echo \"hello $DISPLAY_NAME from $USER_ID with $PARAM_MSG\""
]
},
{
"name": "alpine-task",
"image": "alpine:3.20",
"command": [
"sh",
"-lc"
],
"args": [
"echo running && sleep 3 && echo done"
]
}
]
}