Package Details: homeassistant-supervised 1.7.0-1

Git Clone URL: https://aur.archlinux.org/homeassistant-supervised.git (read-only, click to copy)
Package Base: homeassistant-supervised
Description: Home Assistant Supervised
Upstream URL: https://www.home-assistant.io/
Keywords: haos hass homeassistant supervised
Licenses: Apache
Conflicts: docker-desktop
Submitter: rokam
Maintainer: rokam
Last Packager: rokam
Votes: 4
Popularity: 0.000011
First Submitted: 2022-08-05 22:00 (UTC)
Last Updated: 2024-04-03 16:41 (UTC)

Pinned Comments

rokam commented on 2022-08-05 22:03 (UTC) (edited on 2022-08-05 22:04 (UTC) by rokam)

You need to add systemd.unified_cgroup_hierarchy=false in your kernel parameters.

Read more at: https://wiki.archlinux.org/title/Kernel_parameters

Latest Comments

1 2 3 4 Next › Last »

User8395 commented on 2024-02-19 21:08 (UTC) (edited on 2024-02-19 21:30 (UTC) by User8395)

Created an AUR account just to comment this, the homeassistant container's port 8123 needs to be forwarded to the host port 8123.

Adrian.Chmiel commented on 2024-01-19 07:05 (UTC)

@whoami, MACHINE env. variable has been described on wiki https://wiki.archlinux.org/title/Home_Assistant_Supervised

rokam commented on 2024-01-18 13:18 (UTC)

@whoami, you can run this command before installing.

export MACHINE=qemuarm-64

It doesn't work ootb because there are multiple machines for the same arch.

whoami commented on 2024-01-17 05:36 (UTC)

I set the MACHINE environment variable to qemuarm-64 on Orange PI Zero 3. But it always stops working on the check_machine() function

MACHINE environment variable unknown! Please choose one of the following options:
 - generic-x86-64
 - odroid-c2
 - odroid-c4
 - odroid-n2
 - odroid-xu
 - qemuarm
 - qemuarm-64
 - qemux86
 - qemux86-64
 - raspberrypi
 - raspberrypi2
 - raspberrypi3
 - raspberrypi4
 - raspberrypi3-64
 - raspberrypi4-64
 - tinker
 - khadas-vim3

error: command failed to execute correctly

if I'm setting MACHINE manually in .INSTALL script inside block, then works fine:

"aarch64")
            MACHINE=${MACHINE:=qemuarm-64}
            HASSIO_DOCKER="${DOCKER_REPO}/aarch64-hassio-supervisor"
;

txomon commented on 2024-01-05 01:03 (UTC)

Taking into account how the .INSTALL script is set, I think at least NetworkManager and apparmor should be added as non-optional requirements,

rokam commented on 2023-06-05 20:16 (UTC)

Yes, that might be apparmor related

gaelic commented on 2023-06-05 18:19 (UTC)

@rokam thanks for the clarification.

Another short question: is it somehow possible that homeassistant-supervised is interrupting the audio output? On my system I lose my HDMI Audio Output after installing and starting homeassistant.

rokam commented on 2023-06-05 13:03 (UTC)

@gaelic, most of the suggestions don't make sense after v1.4.2.

gaelic commented on 2023-06-05 12:50 (UTC)

Thanks for this fantastic package.

Maybe @rokam can adapt some of the changes proposed by @tkolo

best wishes, g

tkolo commented on 2023-01-29 00:51 (UTC) (edited on 2023-01-29 00:53 (UTC) by tkolo)

I've remade this PKGBUILD a bit to adjust a few things:

  • networkmanager and apparmor moved to optional dependencies as home assistant seems to be happy without them anyway (and apparmor doesn't work on Arch Linux ARM anyway)

  • renamed systemd-journal-gatewayd.socket to systemd-journal-gatewayd-homeassistant.socket as to not overwrite another package's file

  • moved NetworkManager.conf netowrkmanager's conf.d directory, should work just fine from there I think

  • moved docker.json to somewhere where user can just inspect it and implement changes himself, I have no better idea how to sovle this without overwriting files in post_install which I'm trying to avoid

  • changed arch to any, it works fine on ARM

  • not sure what was going on with docker-desktop conflict

  • moved hassio data to /var/lib/hassio, as much as original script stores it in /usr/share/hassio I don't think that's a good idea, application data should be in /var

Here's my PKGBUILD:

pkgname=homeassistant-supervised
pkgver=1.4.1
pkgrel=1
pkgdesc="Home Assistant Supervised"
arch=("any")
url="https://github.com/home-assistant/supervised-installer"
license=("APACHE")
depends=("curl" "bash" "docker" "dbus" "jq" "systemd" "home-assistant-os-agent")
optdepends=("networkmanager: support for built-in network management"
            "apparmor: enhanced security")
source=("git+https://github.com/home-assistant/supervised-installer.git#tag=$pkgver"
        "https://version.home-assistant.io/apparmor.txt"
        "hassio.json")
sha256sums=('SKIP'
            '0573e65361ab190853749d97eab765eb9c7d897d075efa0ef45c89559f052c12'
            '997652faa0dfa0048c445c53eb8936773b5f520c5ae88ced8cc6dddf29911947')

package() {
  cd supervised-installer/homeassistant-supervised
  install -Dm644 "etc/NetworkManager/NetworkManager.conf" "$pkgdir/etc/NetworkManager/conf.d/homeassistant.conf"
  install -Dm644 "etc/docker/daemon.json" "$pkgdir/usr/share/hassio/conf/docker/daemon.json"

  install -Dm644 "etc/systemd/system/hassio-apparmor.service" "$pkgdir/usr/lib/systemd/system/hassio-apparmor.service"
  sed -i "s/%%SERVICE_DOCKER%%/docker.service/g" "$pkgdir/usr/lib/systemd/system/hassio-apparmor.service"
  sed -i "s|%%HASSIO_APPARMOR_BINARY%%|/usr/bin/hassio-apparmor|g" "$pkgdir/usr/lib/systemd/system/hassio-apparmor.service"

  install -Dm644 "etc/systemd/system/hassio-supervisor.service" "$pkgdir/usr/lib/systemd/system/hassio-supervisor.service"
  sed -i "s|%%BINARY_DOCKER%%|/usr/bin/docker|g" "$pkgdir/usr/lib/systemd/system/hassio-supervisor.service"
  sed -i "s|%%BINARY_HASSIO%%|/usr/bin/hassio-supervisor|g" "$pkgdir/usr/lib/systemd/system/hassio-supervisor.service"
  sed -i "s/systemd-journal-gatewayd.socket/systemd-journal-gatewayd-homeassistant.socket/g" "$pkgdir/usr/lib/systemd/system/hassio-supervisor.service"

  install -Dm755 "usr/bin/ha" "$pkgdir/usr/bin/ha"

  install -Dm644 "usr/lib/systemd/system/systemd-journal-gatewayd.socket" "$pkgdir/usr/lib/systemd/system/systemd-journal-gatewayd-homeassistant.socket"
  sed -i "s/\[Socket\]/[Socket]\nService=systemd-journal-gatewayd.service/" "$pkgdir/usr/lib/systemd/system/systemd-journal-gatewayd-homeassistant.socket"

  install -Dm755 "usr/sbin/hassio-apparmor" "$pkgdir/usr/bin/hassio-apparmor"
  sed -i "s|%%HASSIO_CONFIG%%|/etc/hassio.json|g" "$pkgdir/usr/bin/hassio-apparmor"

  install -Dm755 "usr/sbin/hassio-supervisor" "$pkgdir/usr/bin/hassio-supervisor"
  sed -i "s|%%HASSIO_CONFIG%%|/etc/hassio.json|g" "$pkgdir/usr/bin/hassio-supervisor"

  ARCH=$(uname -m)
  install -Dm644 "../../hassio.json" "$pkgdir/etc/hassio.json"
  sed -i "s/%%ARCH%%/${ARCH}/g" "$pkgdir/etc/hassio.json"

  install -Dm644 "../../apparmor.txt" "$pkgdir/usr/share/apparmor/extra-profiles/hassio-supervisor"
}

and included hassio.json:

{
    "supervisor": "homeassistant/%%ARCH%%-hassio-supervisor",
    "machine": "default",
    "data": "/var/lib/hassio"
}