service-manager/config.toml
2021-12-19 16:17:09 +01:00

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
"""