mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
fixed conditional that caused install to see a DOS partition when none exists.
This commit is contained in:
parent
c4b4b635be
commit
a59a0c2552
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=727
@ -754,8 +754,8 @@ while [ $part_used -lt $partition ]; do
|
||||
part_used=partition
|
||||
fi
|
||||
done
|
||||
if [ "$have_dos_part" != "$opsys_part" -a "$RUN_FDISK" != "overwrite" -a \
|
||||
! "$hname" ]; then
|
||||
if [ "$have_dos_part" -a "$have_dos_part" != "$opsys_part" -a \
|
||||
"$RUN_FDISK" != "overwrite" -a ! "$hname" ]; then
|
||||
echo
|
||||
echo "There appears to be a MS-DOS filesystem on the hard disk."
|
||||
echo -n "Make this be accessible from ${OPSYSTEM}? [y] "
|
||||
|
Loading…
Reference in New Issue
Block a user