New structure of project and work flow

This commit is contained in:
2020-05-01 19:00:17 -05:00
parent 7da4e4d974
commit c454f0f66f
19 changed files with 196 additions and 703 deletions

14
step_1_debootstrap.sh Normal 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
}
main $@;