Add blend_bootstrap_setup in zlibs/bootstrap

This commit is contained in:
parazyd 2018-01-26 11:53:14 +01:00
parent b55e69b618
commit f09da24f08
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 7 additions and 0 deletions

View File

@ -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
}