diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 713c7dc2872..f873f250da8 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -21,7 +21,7 @@ - Home Assistant Core release with the issue: - Last working Home Assistant Core release (if known): -- Operating environment (Home Assistant/Supervised/Docker/venv): +- Operating environment (OS/Container/Supervised/Core): - Integration causing this issue: - Link to integration documentation on our website: diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 9bfecda724f..e60aa00a448 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -25,7 +25,7 @@ about: Report an issue with Home Assistant Core - Home Assistant Core release with the issue: - Last working Home Assistant Core release (if known): -- Operating environment (Home Assistant/Supervised/Docker/venv): +- Operating environment (OS/Container/Supervised/Core): - Integration causing this issue: - Link to integration documentation on our website: diff --git a/homeassistant/helpers/system_info.py b/homeassistant/helpers/system_info.py index a857858de1b..855b6153ba0 100644 --- a/homeassistant/helpers/system_info.py +++ b/homeassistant/helpers/system_info.py @@ -51,7 +51,7 @@ async def async_get_system_info(hass: HomeAssistantType) -> Dict: info_object["docker_version"] = info.get("docker") if info.get("hassos") is not None: - info_object["installation_type"] = "Home Assistant" + info_object["installation_type"] = "Home Assistant OS" else: info_object["installation_type"] = "Home Assistant Supervised"