blob: 9b0913daeefacc734d490b55ba312c721e5cb87e (
plain)
1
2
3
4
5
6
7
8
|
---
# Sample taskfile, for testing linter ability to identify it
version: "3"
output: group
vars:
HOSTNAME: # <-- this is valid for Taskfiles but not for ansible files
sh: echo ${HOSTNAME:-localhost}
tasks: {}
|