summaryrefslogtreecommitdiff
path: root/scripts/build/lb_chroot_preseed
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2011-09-28 09:53:58 +0200
committerDaniel Baumann <daniel@debian.org>2011-09-28 10:11:50 +0200
commit432402e32ba6118886034150a41c9795e63bbb25 (patch)
tree1fc83bc910b77d228ab0aa6f4fbde09a5ad27c21 /scripts/build/lb_chroot_preseed
parentfbc5aa82917d6fddc57a1fbedbb0892c89c210b8 (diff)
downloadvyos-live-build-432402e32ba6118886034150a41c9795e63bbb25.tar.gz
vyos-live-build-432402e32ba6118886034150a41c9795e63bbb25.zip
Renaming and reworking previous chroot_local-preseed into chroot_preseed, now looking for config/preseed/*.preseed{,.chroot} files.
Diffstat (limited to 'scripts/build/lb_chroot_preseed')
-rwxr-xr-xscripts/build/lb_chroot_preseed66
1 files changed, 66 insertions, 0 deletions
diff --git a/scripts/build/lb_chroot_preseed b/scripts/build/lb_chroot_preseed
new file mode 100755
index 000000000..baeced847
--- /dev/null
+++ b/scripts/build/lb_chroot_preseed
@@ -0,0 +1,66 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
+##
+## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
+set -e
+
+# Including common functions
+. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+
+# Setting static variables
+DESCRIPTION="$(Echo 'execute local preseed in chroot')"
+HELP=""
+USAGE="${PROGRAM} [--force]"
+
+Arguments "${@}"
+
+# Reading configuration files
+Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
+Set_defaults
+
+Echo_message "Begin executing local preseeds..."
+
+# Requiring stage file
+Require_stagefile .stage/config .stage/bootstrap
+
+# Checking stage file
+Check_stagefile .stage/chroot_preseed
+
+# Checking lock file
+Check_lockfile .lock
+
+# Creating lock file
+Create_lockfile .lock
+
+if ls config/preseed/*.preseed > /dev/null 2>&1 || \
+ ls config/preseed/*.preseed.chroot > /dev/null 2>&1
+then
+ # Check dependency
+ Check_package chroot/usr/bin/debconf-set-selections debconf
+
+ # Install dependency
+ Install_package
+
+ for PRESEED in config/chroot_preseed/*.preseed config/chroot_preseed/*.preseed.chroot
+ do
+ # Copying local preseed
+ cp "${PRESEED}" chroot/root/preseed
+
+ Chroot chroot "debconf-set-selections /root/preseed"
+
+ # Removing local preseed file
+ rm -f chroot/root/preseed
+ done
+
+ # Remove dependency
+ Remove_package
+
+ # Creating stage file
+ Create_stagefile .stage/chroot_preseed
+fi