Files
meshbook/examples/echo.yaml
2024-11-28 09:44:35 +01:00

11 lines
231 B
YAML

---
name: "Echo some text in the terminal of the device"
device: raspberrypi5
variables:
- name: var1
value: "Testing"
- name: var2
value: "with a slash!"
tasks:
- name: Echo!
command: "echo {{ var1 }}/{{ var2 }}"