server-scripts/entry.sh
2020-01-29 18:12:24 +01:00

59 lines
1.1 KiB
Bash
Executable file

#!/bin/bash
function first_stage(){
echo foo first_stage
apt install debootstrap
if [[ ! -e /root/disk.img ]]; then
echo creating image file
dd if=/dev/zero of=/root/disk.img bs=1M count=512
LODEV=$(losetup --show -f /root/disk.img)
(
echo o # Create a new empty DOS partition table
echo n # Add a new partition
echo p # Primary partition
echo 1 # Partition number
echo # First sector (Accept default: 1)
echo # Last sector (Accept default: varies)
echo w # Write changes
) | fdisk ${LODEV}
losetup -d ${LODEV}
fi
LODEV=$(losetup --show -fP /root/disk.img)
echo using device $LODEV
echo mount divice to $TARGET
echo mkfs.ext4 ${LODEV}p1
mkfs.ext4 ${LODEV}p1
mount ${LODEV}p1 $TARGET
echo mount ${LODEV}p1 $TARGET
echo debootstrap sid $TARGET
debootstrap sid $TARGET
choose_dialog
}
function second_stage(){
echo bar second_stage
}
function test_fun(){
#choose_one test1 | prefix_time
#sleep 1
#block_devices | choose_one -
#echo "> "$test
choose_dialog
#sleep 1
#choose_one | prefix_time
}
if [ $# -eq 1 ]; then
if [ $1 = "test" ]; then
test_fun
fi
fi