File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ labels:
1010 org.opencontainers.image.title : Home Assistant Supervisor
1111 org.opencontainers.image.description : Container-based system for managing Home Assistant Core installation
1212 org.opencontainers.image.source : https://github.com/ameridroid/supervisor
13+ isor/.*
14+ labels :
15+ io.hass.type : supervisor
16+ org.opencontainers.image.title : Home Assistant Supervisor
17+ org.opencontainers.image.description : Container-based system for managing Home Assistant Core installation
18+ org.opencontainers.image.source : https://github.com/ameriDroid/supervisor
1319 org.opencontainers.image.authors : The Home Assistant Authors
1420 org.opencontainers.image.url : https://www.home-assistant.io/
1521 org.opencontainers.image.documentation : https://www.home-assistant.io/docs/
Original file line number Diff line number Diff line change 1818SUPERVISOR_DOCKER_NAME : str = f"{ DOCKER_PREFIX } _supervisor"
1919
2020URL_HASSIO_ADDONS = "https://github.com/home-assistant/addons"
21- URL_HASSIO_APPARMOR = "https://version.home-assistant .io/apparmor_{channel}.txt"
21+ URL_HASSIO_APPARMOR = "https://ameridroid.github .io/HA-version /apparmor_{channel}.txt"
2222URL_HASSIO_VERSION = "https://ameridroid.github.io/HA-version/{channel}.json"
2323
2424SUPERVISOR_DATA = Path ("/data" )
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ async def check_connectivity(self) -> None:
283283 timeout = aiohttp .ClientTimeout (total = 10 )
284284 try :
285285 await self .sys_websession .head (
286- "https://checkonline.home-assistant .io/online.txt" , timeout = timeout
286+ "https://ameridroid.github .io/HA-version /online.txt" , timeout = timeout
287287 )
288288 except (ClientError , TimeoutError ) as err :
289289 _LOGGER .debug ("Supervisor Connectivity check failed: %s" , err )
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ async def test_update_apparmor(
110110 await coresys .supervisor .update_apparmor ()
111111
112112 websession .get .assert_called_once_with (
113- f"https://version.home-assistant .io/apparmor_{ channel } .txt" ,
113+ f"https://ameridroid.github .io/HA-version /apparmor_{ channel } .txt" ,
114114 timeout = ClientTimeout (total = 10 ),
115115 )
116116 load_profile .assert_called_once ()
Original file line number Diff line number Diff line change 1919 NetworkManager as NetworkManagerService ,
2020)
2121
22- URL_TEST = "https://version.home-assistant .io/stable.json"
22+ URL_TEST = "https://ameridroid.github .io/HA-version /stable.json"
2323
2424
2525@pytest .mark .usefixtures ("no_job_throttle" )
@@ -137,7 +137,7 @@ async def find_fetch_data_job_start(job: SupervisorJob):
137137 coresys .websession .get .assert_called_once ()
138138 assert (
139139 coresys .websession .get .call_args [0 ][0 ]
140- == "https://version.home-assistant .io/stable.json"
140+ == "https://ameridroid.github .io/HA-version /stable.json"
141141 )
142142
143143
You can’t perform that action at this time.
0 commit comments