Blind test

This commit is contained in:
Phillip 2024-09-07 22:33:17 +01:00
parent 0aa69778fb
commit 9ce0294d14

View File

@ -25,25 +25,23 @@ read -p "Do you wish to set a home partition? " yesno
case $yesno in case $yesno in
[yesYesYy]* ) [yesYesYy]* )
read -p 'Please enter the drive value for the home partition: ' homepar read -p 'Please enter the drive value for the home partition: ' homepar
# Ask if a home partition should be wiped
read -p 'Do you wish to wipe the home partition? ' wipeyesno
case $wipeyesno in
[yesYesYy]* )
mkfs.ext4 /dev/$homepar
;;
[noNoNn]* )
echo "The home partition will not be wiped"
;;
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac
;; ;;
[noNoNn]* ) [noNoNn]* )
echo "A home partition will not be used in this installation" echo "A home partition will not be used in this installation"
;; ;;
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";; * ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac esac
# Ask if a home partition should be wiped
if test -z "$homepar"; then
read -p 'Do you wish to wipe the home partition? ' wipeyesno
case $wipeyesno in
[yesYesYy]* )
mkfs.ext4 /dev/$homepar
;;
[noNoNn]* )
echo "The home partition will not be wiped"
;;
* ) echo "Please answer yes (Yes, y, Y) or no (No, n, N)";;
esac
fi
# Get user credentials # Get user credentials
read -p "Please enter a username " username read -p "Please enter a username " username
read -rsp "Please enter a password " password read -rsp "Please enter a password " password