Finalized core changes

This commit is contained in:
2020-05-02 03:48:38 -05:00
parent c15b76e83c
commit 9ea97f0210
1665 changed files with 67 additions and 19 deletions

14
src/step_1_debootstrap.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
. CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
# Debootstrap process
function main() {
sudo debootstrap --arch=$ARCH $RELEASE "${CHROOT_PTH}"
}
main $@;