Simon Zeyer 19cf015e95
Some checks failed
build / Build Checkmk package (push) Failing after 36s
build-release / Build Release Package (push) Failing after 35s
Lint / flake8_py3 (push) Failing after 18s
pytest / pytest (push) Failing after 32s
init first version of pbs_special_agent
2026-03-10 19:28:57 +00:00

35 lines
896 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Install",
"type": "shell",
"command": ".devcontainer/build.sh",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Start Site",
"type": "shell",
"command": "omd start",
"problemMatcher": []
},
{
"label": "Re-Start Site",
"type": "shell",
"command": "omd restart",
"problemMatcher": []
},
{
"label": "Stop Site",
"type": "shell",
"command": "omd stop",
"problemMatcher": []
}
]
}