Replace yes with parted option

This commit is contained in:
Santiago Lo Coco 2021-12-23 16:39:27 -03:00
parent 5503eec469
commit 92efd9a2a8
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
checkUefi() {
ls /sys/firmware/efi/efivars > /dev/null 2>&1
if [ $? -ge 1 ]; then
echo "This scripts supports only UEFI boot mode."
whiptail --msgbox "This scripts supports only UEFI boot mode." 0 0
exit 1
fi
}
@ -47,7 +47,7 @@ partDisks() {
}
autoPart() {
yes | parted $disk mklabel gpt 2> /dev/null
parted -s $disk mklabel gpt 2> /dev/null
sgdisk $disk -n=1:0:+300M -t=1:ef00 > /dev/null
sgdisk $disk -n=2:0:+1024M -t=2:8200 > /dev/null