File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22from pathlib import Path
33from ipaddress import ip_network
44
5- HASSIO_VERSION = '0.62 '
5+ HASSIO_VERSION = '0.63 '
66
77URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/'
88 'hassio/{}/version.json' )
Original file line number Diff line number Diff 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 ):
Original file line number Diff line number Diff line change 11{
2- "hassio" : " 0.62 " ,
2+ "hassio" : " 0.63 " ,
33 "homeassistant" : " 0.53.1" ,
44 "resinos" : " 1.0" ,
55 "resinhup" : " 0.3" ,
You can’t perform that action at this time.
0 commit comments