mirror of
https://github.com/Noratrieb/service-manager.git
synced 2026-01-14 16:35:05 +01:00
45 lines
No EOL
618 B
TOML
45 lines
No EOL
618 B
TOML
[hello]
|
|
command = "echo hello"
|
|
|
|
[sleep]
|
|
command = "sleep 48590234"
|
|
|
|
[environment]
|
|
command = "echo $HELLO && sleep 37852375"
|
|
env = { HELLO = "uwu hi ヾ(•ω•`)o" }
|
|
|
|
[pwd]
|
|
command = "pwd"
|
|
workdir = "./src/controller"
|
|
|
|
[crash]
|
|
command = "cat fkasdjfölashjdflksd"
|
|
|
|
[side-effect-create]
|
|
command = "touch uwu.txt"
|
|
|
|
[side-effect-remove]
|
|
command = "rm uwu.txt"
|
|
|
|
[compile]
|
|
command = "cargo check"
|
|
|
|
[loop]
|
|
command = """
|
|
counter=0
|
|
|
|
while true; do
|
|
echo $counter
|
|
counter=$((counter+1))
|
|
done
|
|
"""
|
|
|
|
[many-lines]
|
|
command = """
|
|
counter=0
|
|
|
|
while [ $counter -lt 100 ]; do
|
|
echo $counter
|
|
counter=$((counter+1))
|
|
done
|
|
""" |