#!/bin/sh echo "~> Setting up $blockdevice with:" echo " * 300M EFI (FAT32) partition" echo " * crypted (LUKS) root (EXT4) partition" echo "g\nn\n1\n2048\n+300M\nn\n2\n\n\np\nw" if [ "$?" -eq 0 ]; then echo "~> Seems to have worked. Yay!" exit 0 else echo "~> Failed. :(" exit 1 fi