This commit is contained in:
rootzoll
2019-01-15 15:13:19 +01:00
parent 3e6ae06806
commit e7b7172d7a

View File

@@ -16,17 +16,20 @@ if [ ${hddExists} -eq 0 ]; then
if [ ${noPartition} -eq 1 ]; then if [ ${noPartition} -eq 1 ]; then
echo "***********************************************************" echo "***********************************************************"
echo "WARNING: HDD HAS NO PARTITIONS" echo "WARNING: HDD HAS NO PARTITIONS"
echo "***********************************************************"
echo "Press ENTER to create a Partition - or CTRL+C to abort" echo "Press ENTER to create a Partition - or CTRL+C to abort"
read key read key
echo "Creating Partition ..."
sudo parted -s /dev/sda unit s mkpart primary `sudo parted /dev/sda unit s print free | grep 'Free Space' | tail -n 1` sudo parted -s /dev/sda unit s mkpart primary `sudo parted /dev/sda unit s print free | grep 'Free Space' | tail -n 1`
echo "DONE."
sleep 3 sleep 3
fi else
echo "***********************************************************" echo "***********************************************************"
echo "WARNING: NO HDD FOUND -> Shutdown, connect HDD and restart." echo "WARNING: NO HDD FOUND -> Shutdown, connect HDD and restart."
echo "***********************************************************" echo "***********************************************************"
exit exit
fi fi
fi
# check data from _bootstrap.sh that was running on device setup # check data from _bootstrap.sh that was running on device setup
bootstrapInfoExists=$(ls $infoFile | grep -c '.info') bootstrapInfoExists=$(ls $infoFile | grep -c '.info')