Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/debootstrap.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows to easily install Debian or Ubuntu into a directory, and later on into a VM image avoiding using the installer images. sudo debootstrap --arch=amd64 sid /scratch/local2/debian-sid For Ubuntu, get the archive keyring from somewhere (`/usr/share/keyrings/` on some installation or the WWW), and pass it: sudo debootstrap --arch=amd64 --keyring /scratch/tmp/ubuntu-archive-keyring.gpg hirsute /scratch/local2/ubuntu-hirsute You can also use systemd-nspawn or chroot to work in these directories.
executable file
36 lines (25 sloc)
600 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION debootstrap-1.0.124-0 | |
# https://salsa.debian.org/installer-team/debootstrap/-/archive/fbd2ea51c7ddf519209e78d1ba79ade70c76c015/debootstrap-1.0.124.tar.gz | |
SRCURL[0]="https://beehive.molgen.mpg.de/7b4dfb583c7b7c755efc26ac51ec3c64/debootstrap-${PKGVERSION}.tar.gz" | |
# PATCHURL+=() | |
# build_in_sourcedir | |
# sourcesubdir_append src | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
#mee_configure() { | |
# bee_configure | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
#mee_install() { | |
# bee_install | |
#} | |
#mee_install_post() { | |
# exit | |
#} |