fix errors
This commit is contained in:
parent
e4fe19450b
commit
f9e5de3364
17
install.sh
17
install.sh
|
@ -2,10 +2,18 @@
|
|||
|
||||
[ ${GFU_DEBUG} ] && set -x
|
||||
|
||||
# set -x
|
||||
|
||||
SCRIPT_NAME="${0}"
|
||||
SCRIPT_PATH=$(realpath ${SCRIPT_NAME})
|
||||
|
||||
# [ ! "$(id -u)" == 0 ] && echo "Need to run as superuser" && exit 1
|
||||
GFU_PARTED=$(which parted 2>/dev/null)
|
||||
GFU_GRUB=$(which grub-install 2>/dev/null)
|
||||
|
||||
[ -z "${GFU_PARTED}" ] && echo "The parted utility is not installed" && exit 1
|
||||
[ -z "${GFU_GRUB}" ] && echo "The grub-install utility is not installed" && exit 1
|
||||
|
||||
[ ! "$(id -u)" == 0 ] && echo "Need to run as superuser" && exit 1
|
||||
|
||||
main () {
|
||||
local GFU_KEY=""
|
||||
|
@ -96,6 +104,13 @@ main () {
|
|||
esac
|
||||
done
|
||||
|
||||
for partition in $(mount | grep "${GFU_DEVICE}[0-9]" | awk '{print $1}') ; do
|
||||
if ! umount -f ${partition} ; then
|
||||
echo "Failed to unmount ${partition}"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
if ${GFU_LEGACY_MODE} ; then
|
||||
parted ${GFU_DEVICE} -s mklabel msdos
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue