From 401609212e82e8ad8449309b3ff57f582776a08c Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 20 Jul 2021 18:26:04 +0200 Subject: [PATCH] Log systemd-nspawn invocation parameters When debugging it is useful to know what parameters where used. --- arch-nspawn.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch-nspawn.in b/arch-nspawn.in index e2c6ba1..7521dd3 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -127,7 +127,9 @@ eval "$(grep -a '^CARCH=' "$working_dir/etc/makepkg.conf")" [[ -z $nosetarch ]] || unset CARCH -exec systemd-nspawn -q \ +for p in echo exec; do +[[ $p == echo ]] && msg "Entering chroot \"$working_dir\" via:" +"$p" systemd-nspawn -q \ -D "$working_dir" \ -E "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin" \ --register=no \ @@ -136,3 +138,4 @@ exec systemd-nspawn -q \ --resolv-conf=copy-host \ "${mount_args[@]}" \ "$@" +done