From 8786b013bc794c7c024b7213114a5175d56ae2d3 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 4 Jan 2022 00:02:22 -0500 Subject: [PATCH] setup-schroot: install the udev and systemd packages separately On non-Linux Debian ports (e.g., GNU/Hurd and GNU/kFreeBSD) the udev and systemd packages don't exist. So try to install them separately, so they can fail on their own on those platforms. Signed-off-by: Theodore Ts'o --- contrib/setup-schroot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/setup-schroot b/contrib/setup-schroot index 7961445..f3f45c6 100755 --- a/contrib/setup-schroot +++ b/contrib/setup-schroot @@ -38,7 +38,8 @@ dd-schroot-cmd -c "$CHROOT" apt-get update dd-schroot-cmd -c "$CHROOT" -y apt-get upgrade dd-schroot-cmd -c "$CHROOT" -y apt-get build-dep e2fsprogs dd-schroot-cmd -c "$CHROOT" -y apt-get install git gdb emacs-nox lintian \ - acl libreadline-dev dh-exec udev systemd cron + acl libreadline-dev dh-exec cron +dd-schroot-cmd -c "$CHROOT" -y apt-get install udev systemd echo " " echo "Start chroot by running: " echo "schroot -r -c $CHROOT" -- 1.8.3.1