summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-06-05 21:17:59 +0200
committerDaniel Baumann <daniel@debian.org>2012-06-05 21:53:15 +0200
commit70de5f09da642186f58faeaabe0308cd76fad0f0 (patch)
tree3bfc13393952b5a36e94282b978b40ce6be71245 /bin
parenta259714e3d8b60cd5c638e0ada860cc26de771b9 (diff)
downloadlive-boot-70de5f09da642186f58faeaabe0308cd76fad0f0.tar.gz
live-boot-70de5f09da642186f58faeaabe0308cd76fad0f0.zip
Removing live-preseed, not used anymore.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/live-preseed25
1 files changed, 0 insertions, 25 deletions
diff --git a/bin/live-preseed b/bin/live-preseed
deleted file mode 100755
index c0933e6..0000000
--- a/bin/live-preseed
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/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}" /usr/bin/debconf-communicate -fnoninteractive live-boot >/dev/null
-then
-
-chroot "${1}" /usr/bin/debconf-communicate -fnoninteractive live-boot >/dev/null << EOF
-REGISTER debian-installer/dummy ${question}
-SET ${question} ${value}
-FSET ${question} seen ${seen}
-EOF
-
-fi
-
-exit 0