2018-04-08 22:29:25 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Run Playbook",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "ansible-playbook -i inventory nas.yml -b -K",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run Playbook Syntax Check",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "ansible-playbook -i inventory nas.yml --syntax-check",
|
|
|
|
"group": {
|
|
|
|
"kind": "test",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
2018-12-08 22:44:51 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run Ansible-Lint",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "ansible-lint nas.yml",
|
|
|
|
"group": "test"
|
2018-04-08 22:29:25 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|