diff options
| author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:36 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:25:50 +0100 |
| commit | 9fc9e2a1a11b0edada38cb501fefe4f58aa414ac (patch) | |
| tree | 7d2d89ecfbd394b41854937ec2342bc7ae530cf5 /bin/live-preseed | |
| parent | 4bdaa2237c6ae923d1dd068e9024ebceca3f40d9 (diff) | |
| download | live-boot-9fc9e2a1a11b0edada38cb501fefe4f58aa414ac.tar.gz live-boot-9fc9e2a1a11b0edada38cb501fefe4f58aa414ac.zip | |
Adding live-initramfs 1.87.2-1.
Diffstat (limited to 'bin/live-preseed')
| -rwxr-xr-x | bin/live-preseed | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/live-preseed b/bin/live-preseed new file mode 100755 index 0000000..c10315e --- /dev/null +++ b/bin/live-preseed @@ -0,0 +1,19 @@ +#! /bin/sh +set -e +PATH=/usr/sbin:/usr/bin:/sbin:/bin + +root="$1" +question="$2" +value="$3" +seen="$4" +[ "$seen" ] || seen=true + +if ! (echo "SET $question $value"; echo "FSET $question seen $seen") | chroot "$1" debconf-communicate -fnoninteractive live-initramfs >/dev/null; then + chroot "$1" debconf-communicate -fnoninteractive live-initramfs >/dev/null <<EOF +REGISTER debian-installer/dummy $question +SET $question $value +FSET $question seen $seen +EOF +fi + +exit 0 |
