summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-08-08 05:46:40 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:48:01 +0100
commita3f5e94aedca5cebe374467749c1c94203be2a94 (patch)
treec719751bf586a89a046c68e749819d1cd21b54a9
parent11f6195097148e7b5738ffe29dc16061b2cfd770 (diff)
downloadlive-boot-a3f5e94aedca5cebe374467749c1c94203be2a94.tar.gz
live-boot-a3f5e94aedca5cebe374467749c1c94203be2a94.zip
Fix path issue with live-preseed causing noisy errors when booting.
-rwxr-xr-xbin/live-preseed4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/live-preseed b/bin/live-preseed
index 36154ea..d98c4f3 100755
--- a/bin/live-preseed
+++ b/bin/live-preseed
@@ -11,10 +11,10 @@ seen="${4}"
[ "${seen}" ] || seen=true
-if ! (echo "SET ${question} ${value}"; echo "FSET ${question} seen ${seen}") | chroot "${1}" debconf-communicate -fnoninteractive live-initramfs >/dev/null
+if ! (echo "SET ${question} ${value}"; echo "FSET ${question} seen ${seen}") | chroot "${1}" /usr/bin/debconf-communicate -fnoninteractive live-initramfs >/dev/null
then
-chroot "${1}" debconf-communicate -fnoninteractive live-initramfs >/dev/null << EOF
+chroot "${1}" /usr/bin/debconf-communicate -fnoninteractive live-initramfs >/dev/null << EOF
REGISTER debian-installer/dummy ${question}
SET ${question} ${value}
FSET ${question} seen ${seen}