Fixed an issue where brand new disks (no partitions), got protected by a safety measurement where .keep_partitions were set to True by default.
This commit is contained in:
parent
24964e4865
commit
a75002a36d
|
|
@ -131,6 +131,11 @@ def ask_user_questions():
|
||||||
elif option == 'format-all':
|
elif option == 'format-all':
|
||||||
archinstall.arguments['filesystem'] = archinstall.ask_for_main_filesystem_format()
|
archinstall.arguments['filesystem'] = archinstall.ask_for_main_filesystem_format()
|
||||||
archinstall.arguments['harddrive'].keep_partitions = False
|
archinstall.arguments['harddrive'].keep_partitions = False
|
||||||
|
else:
|
||||||
|
# If the drive doesn't have any partitions, safely mark the disk with keep_partitions = False
|
||||||
|
# and ask the user for a root filesystem.
|
||||||
|
archinstall.arguments['filesystem'] = archinstall.ask_for_main_filesystem_format()
|
||||||
|
archinstall.arguments['harddrive'].keep_partitions = False
|
||||||
|
|
||||||
# Get disk encryption password (or skip if blank)
|
# Get disk encryption password (or skip if blank)
|
||||||
if not archinstall.arguments.get('!encryption-password', None):
|
if not archinstall.arguments.get('!encryption-password', None):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue