We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3191396 commit b476f3dCopy full SHA for b476f3d
.github/workflows/build-homeassistant.yml
@@ -307,6 +307,9 @@ jobs:
307
wget -P ./build/extensions https://raw.githubusercontent.com/armbian/os/main/userpatches/extensions/ha.sh
308
# 修改ha.sh脚本中的命令以停止internet host IP地址检测
309
sed -i "/sed -i \"\/update-grub\/d\"/a\sed -i \"s\/while ! ping\/while ping\/\" homeassistant-supervised/DEBIAN/postinst" ./build/extensions/ha.sh
310
+ # 在ha.sh的chroot_sdcard_apt_get_install方法里添加缺少的依赖包
311
+ more_ha_deps="systemd-timesyncd"
312
+ sed -i "s|systemd-journal-remote |systemd-journal-remote ${more_ha_deps} |g" ./build/extensions/ha.sh
313
echo "status=success" >> ${GITHUB_OUTPUT}
314
315
- name: Compile Armbian [ ${{ inputs.set_release }} ]
0 commit comments