From 98e844724023b89e2003a4c71cf7e5fa3de09869 Mon Sep 17 00:00:00 2001 From: Martin Kohn Date: Fri, 8 Dec 2023 16:14:19 +0100 Subject: [PATCH] we removed line /usr/bin/entry.sh echo "Running balena base image entrypoint..." from /usr/src/app/start.sh as this /usr/bin/entry.sh is already being run as an entrypoint by Dockerfile and thus it was being run twice and udev deamon as well twice, which is wrong... --- src/start.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/start.sh b/src/start.sh index 11359d0..e646e5f 100644 --- a/src/start.sh +++ b/src/start.sh @@ -3,9 +3,6 @@ # this allows chromium sandbox to run, see https://github.com/balena-os/meta-balena/issues/2319 sysctl -w user.max_user_namespaces=10000 -# Run balena base image entrypoint script -/usr/bin/entry.sh echo "Running balena base image entrypoint..." - export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket sed -i -e 's/console/anybody/g' /etc/X11/Xwrapper.config