mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-10 16:54:20 +01:00
* adding support for deployment_key for git_pull addon * safer usage of bash vars * fixed $HOME vs ~ typo * more specific schema for deployment_key_protocol * adding ssh-client to git pull addon image * only ...-client package needed * Pump version to 2.0
33 lines
775 B
JSON
33 lines
775 B
JSON
{
|
|
"name": "Git pull",
|
|
"version": "2.0",
|
|
"slug": "git_pull",
|
|
"description": "Simple git pull to update the local configuration",
|
|
"url": "https://home-assistant.io/addons/git_pull/",
|
|
"startup": "services",
|
|
"boot": "manual",
|
|
"hassio_api": true,
|
|
"map": ["config:rw"],
|
|
"options": {
|
|
"deployment_key": [],
|
|
"deployment_key_protocol": "rsa",
|
|
"repository": null,
|
|
"auto_restart": false,
|
|
"repeat": {
|
|
"active": false,
|
|
"interval": 300
|
|
}
|
|
},
|
|
"schema": {
|
|
"deployment_key": ["str"],
|
|
"deployment_key_protocol": "match(rsa|dsa|ecdsa|ed25519|rsa)",
|
|
"repository": "url",
|
|
"auto_restart": "bool",
|
|
"repeat": {
|
|
"active": "bool",
|
|
"interval": "int"
|
|
}
|
|
},
|
|
"image": "homeassistant/{arch}-addon-git_pull"
|
|
}
|