From b8b6779eac261c701a2913f9ad0cc12e78116055 Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Tue, 22 Aug 2023 16:09:44 +0700 Subject: [PATCH] colord: use chroot to fix LIVESLACK issue. Signed-off-by: Willy Sudiarto Raharjo --- colord/doinst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colord/doinst.sh b/colord/doinst.sh index 314350e..97aae30 100644 --- a/colord/doinst.sh +++ b/colord/doinst.sh @@ -17,6 +17,6 @@ if [ -e usr/share/glib-2.0/schemas ]; then fi if ! grep -q ^colord: /etc/group ; then - groupadd -g 303 colord - useradd -d /var/lib/colord -u 303 -g colord -s /bin/false colord + chroot . groupadd -g 303 colord + chroot . useradd -d /var/lib/colord -u 303 -g colord -s /bin/false colord fi