configs/.vscode/tasks.json

24 lines
569 B
JSON
Raw Permalink Normal View History

2022-01-26 18:01:41 -05:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Run run.yml playbook",
"type": "shell",
"command": "ansible-playbook run.yml -K",
"problemMatcher": []
},
2022-01-30 17:55:18 -05:00
{
"label": "Run update.yml playbook",
"type": "shell",
"command": "ansible-playbook update.yml -K",
"problemMatcher": []
},
2022-01-26 18:01:41 -05:00
{
"label": "Lint",
"type": "shell",
"command": "ansible-lint",
"problemMatcher": []
}
]
}