You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
680 B
Bash
27 lines
680 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
|
|
apt-get -y install mdadm btrfs-tools
|
|
|
|
"./parted/${1}.sh"
|
|
|
|
cryptsetup luksFormat /dev/md0
|
|
cryptsetup open --type luks /dev/md0 md0-unlocked
|
|
|
|
mkfs.btrfs /dev/mapper/md0-unlocked
|
|
|
|
mkdir /mnt/md0-unlocked
|
|
mount /dev/mapper/md0-unlocked /mnt/md0-unlocked
|
|
|
|
debootstrap --variant=minbase --arch=amd64 stretch /mnt/md0-unlocked https://deb.debian.org/debian/
|
|
|
|
mount -t proc none /mnt/md0-unlocked/proc
|
|
mount -t sysfs none /mnt/md0-unlocked/sys
|
|
mount -o bind /dev /mnt/md0-unlocked/dev
|
|
|
|
cp docker.key /mnt/md0-unlocked/docker.key
|
|
cp post-debootstrap-installer.sh /mnt/md0-unlocked/post-debootstrap-installer.sh
|
|
|
|
chroot /mnt/md0-unlocked /post-debootstrap-installer.sh
|