commit f09da24f0872ba53afdf2a5d21b616b572d582dc
parent b55e69b618b155198dfa2650e8123a098453ac92
Author: parazyd <parazyd@dyne.org>
Date: Fri, 26 Jan 2018 11:53:14 +0100
Add blend_bootstrap_setup in zlibs/bootstrap
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/zlibs/bootstrap b/zlibs/bootstrap
@@ -68,6 +68,8 @@ bootstrap_complete_base() {
sudo chroot $strapdir \
/debootstrap/debootstrap --second-stage || zerr
+ blend_bootstrap_setup || zerr
+
## write all system configuration
notice "writing system configuration"
conf_print_debconf | sudo tee $strapdir/debconf.set >/dev/null
@@ -222,3 +224,8 @@ EOF
[[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" || true
}
+
+blend_bootstrap_setup() {
+ fn blend_bootstrap_setup "noop"
+ return 0
+}