Remove deprecated Insteon components (#22710)

This commit is contained in:
Paulus Schoutsen 2019-04-04 00:46:20 -07:00 committed by Rohan Kapoor
parent 704983a64f
commit d231d59896
4 changed files with 0 additions and 62 deletions

View File

@ -1,23 +0,0 @@
"""Local support for Insteon."""
import logging
_LOGGER = logging.getLogger(__name__)
def setup(hass, config):
"""Set up the insteon_local component.
This component is deprecated as of release 0.77 and should be removed in
release 0.90.
"""
_LOGGER.warning('The insteon_local component has been replaced by '
'the insteon component')
_LOGGER.warning('Please see https://home-assistant.io/components/insteon')
hass.components.persistent_notification.create(
'insteon_local has been replaced by the insteon component.<br />'
'Please see https://home-assistant.io/components/insteon',
title='insteon_local Component Deactivated',
notification_id='insteon_local')
return False

View File

@ -1,8 +0,0 @@
{
"domain": "insteon_local",
"name": "Insteon local",
"documentation": "https://www.home-assistant.io/components/insteon_local",
"requirements": [],
"dependencies": [],
"codeowners": []
}

View File

@ -1,23 +0,0 @@
"""Support for INSTEON PowerLinc Modem."""
import logging
_LOGGER = logging.getLogger(__name__)
async def async_setup(hass, config):
"""Set up the insteon_plm component.
This component is deprecated as of release 0.77 and should be removed in
release 0.90.
"""
_LOGGER.warning('The insteon_plm component has been replaced by '
'the insteon component')
_LOGGER.warning('Please see https://home-assistant.io/components/insteon')
hass.components.persistent_notification.create(
'insteon_plm has been replaced by the insteon component.<br />'
'Please see https://home-assistant.io/components/insteon',
title='insteon_plm Component Deactivated',
notification_id='insteon_plm')
return False

View File

@ -1,8 +0,0 @@
{
"domain": "insteon_plm",
"name": "Insteon plm",
"documentation": "https://www.home-assistant.io/components/insteon_plm",
"requirements": [],
"dependencies": [],
"codeowners": []
}