Skip to content

Commit

Permalink
Add Home Assistant supervised installer and os-agent (wimpysworld#642)
Browse files Browse the repository at this point in the history
* Add Home Assistant supervised installer and os-agent

* Removed README changes and ARCHS_SUPPORTED var
  • Loading branch information
miGii authored and philclifford committed Nov 21, 2022
1 parent 7aae1a5 commit 6f9337a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 01-main/manifest
Expand Up @@ -69,6 +69,7 @@ gpu-viewer
grype
helio-workstation
heroic
homeassistant-supervised
hugo
hyper
igdm
Expand Down Expand Up @@ -123,6 +124,7 @@ openaudible
openrazer-meta
openrgb
opera-stable
os-agent
p3x-onenote
pandoc
papirus-icon-theme
Expand Down
9 changes: 9 additions & 0 deletions 01-main/packages/homeassistant-supervised
@@ -0,0 +1,9 @@
DEFVER=1
get_github_releases "https://api.github.com/repos/home-assistant/supervised-installer/releases/latest"
if [ "${ACTION}" != "prettylist" ]; then
URL=$(grep "browser_download_url.*\.deb\"" "${CACHE_DIR}/${APP}.json" | cut -d'"' -f4)
VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8 | tr -d v)"
fi
PRETTY_NAME="Home Assistant Supervised"
WEBSITE="https://github.com/home-assistant/supervised-installer"
SUMMARY="This is Home Assistant supervised installer, that provides the full Home Assistant experience on a regular operating system."
9 changes: 9 additions & 0 deletions 01-main/packages/os-agent
@@ -0,0 +1,9 @@
DEFVER=1
get_github_releases "https://api.github.com/repos/home-assistant/os-agent/releases/latest"
if [ "${ACTION}" != "prettylist" ]; then
URL="$(grep "browser_download_url.*x86_64\.deb\"" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4)"
VERSION_PUBLISHED="$(echo ${URL} | cut -d'_' -f2)"
fi
PRETTY_NAME="Agent for Home Assistant OS"
WEBSITE="https://github.com/home-assistant/os-agent"
SUMMARY="This is the OS Agent for Home Assistant. It is used for Home Assistant OS and Home Assistant Supervised installation types and it allows the Home Assistant Supervisor to communicate with the host operating system."

0 comments on commit 6f9337a

Please sign in to comment.