* Add systemd-journal-remote to the image This allows to access journald's log from within Supervisor and expose more system logs to users. * Allow to access systemd-journal-gatewayd from Supervisor Create a systemd-journal-gatewayd.socket service using a Unix socket and bind mount it into the Supervisor container. This allows to query systemd-journald from Supervisor directly.
22 lines
739 B
Desktop File
22 lines
739 B
Desktop File
[Unit]
|
|
Description=HassOS supervisor
|
|
Requires=docker.service rauc.service dbus.service
|
|
Wants=network-online.target hassos-apparmor.service time-sync.target systemd-journal-gatewayd.socket
|
|
After=docker.service rauc.service dbus.service network-online.target hassos-apparmor.service time-sync.target systemd-journal-gatewayd.socket
|
|
RequiresMountsFor=/mnt/data /mnt/boot /mnt/overlay
|
|
StartLimitIntervalSec=60
|
|
StartLimitBurst=5
|
|
ConditionPathExists=/run/dbus/system_bus_socket
|
|
ConditionPathExists=/run/docker.sock
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=always
|
|
RestartSec=5s
|
|
ExecStartPre=-/usr/bin/docker stop hassio_supervisor
|
|
ExecStart=/usr/sbin/hassos-supervisor
|
|
ExecStop=-/usr/bin/docker stop hassio_supervisor
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|