Skip to content

Commit 4b308d0

Browse files
committed
Fix version conflict
2 parents e5204ee + 4448ba8 commit 4b308d0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

hassio/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33
from ipaddress import ip_network
44

5-
HASSIO_VERSION = '0.62'
5+
HASSIO_VERSION = '0.63'
66

77
URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/'
88
'hassio/{}/version.json')

hassio/homeassistant.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ async def install_landingpage(self):
109109
_LOGGER.warning("Fails install landingpage, retry after 60sec")
110110
await asyncio.sleep(60, loop=self.loop)
111111

112+
# run landingpage after installation
113+
await self.docker.run()
114+
112115
async def install(self):
113116
"""Install a landingpage."""
114117
_LOGGER.info("Setup HomeAssistant")
@@ -123,8 +126,10 @@ async def install(self):
123126
_LOGGER.warning("Error on install HomeAssistant. Retry in 60sec")
124127
await asyncio.sleep(60, loop=self.loop)
125128

126-
# store version
129+
# finishing
127130
_LOGGER.info("HomeAssistant docker now installed")
131+
if self.boot:
132+
await self.docker.run()
128133
await self.docker.cleanup()
129134

130135
async def update(self, version=None):

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"hassio": "0.62",
2+
"hassio": "0.63",
33
"homeassistant": "0.53.1",
44
"resinos": "1.0",
55
"resinhup": "0.3",

0 commit comments

Comments
 (0)