Add supervisor add-on stop helper (#40501)

This commit is contained in:
Martin Hjelmare 2020-09-23 17:54:07 +02:00 committed by GitHub
parent ccff7f97cb
commit 27c5594cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -169,6 +169,17 @@ async def async_start_addon(hass: HomeAssistantType, slug: str) -> None:
await hassio.send_command(command)
@bind_hass
async def async_stop_addon(hass: HomeAssistantType, slug: str) -> None:
"""Stop add-on.
The caller of the function should handle HassioAPIError.
"""
hassio = hass.data[DOMAIN]
command = f"/addons/{slug}/stop"
await hassio.send_command(command)
@callback
@bind_hass
def get_info(hass):