Add blend_bootstrap_setup in zlibs/bootstrap
This commit is contained in:
parent
b55e69b618
commit
f09da24f08
|
|
@ -68,6 +68,8 @@ bootstrap_complete_base() {
|
||||||
sudo chroot $strapdir \
|
sudo chroot $strapdir \
|
||||||
/debootstrap/debootstrap --second-stage || zerr
|
/debootstrap/debootstrap --second-stage || zerr
|
||||||
|
|
||||||
|
blend_bootstrap_setup || zerr
|
||||||
|
|
||||||
## write all system configuration
|
## write all system configuration
|
||||||
notice "writing system configuration"
|
notice "writing system configuration"
|
||||||
conf_print_debconf | sudo tee $strapdir/debconf.set >/dev/null
|
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
|
[[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" || true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blend_bootstrap_setup() {
|
||||||
|
fn blend_bootstrap_setup "noop"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue