Enabled skipping partitioning in minimal. It now can take /mnt just as guided as it's destination, and skips partitioning all together. Which makes it go straight to installation.
This commit is contained in:
parent
97540293b8
commit
0370c44ed8
|
|
@ -10,7 +10,6 @@ if archinstall.arguments.get('help', None):
|
|||
archinstall.log(f" - Optional systemd network via --network")
|
||||
|
||||
archinstall.arguments['harddrive'] = archinstall.select_disk(archinstall.all_disks())
|
||||
archinstall.arguments['harddrive'].keep_partitions = False
|
||||
|
||||
def install_on(mountpoint):
|
||||
# We kick off the installer by telling it where the
|
||||
|
|
@ -37,6 +36,9 @@ def install_on(mountpoint):
|
|||
archinstall.log(f" * root (password: airoot)")
|
||||
archinstall.log(f" * devel (password: devel)")
|
||||
|
||||
if archinstall.arguments['harddrive']:
|
||||
archinstall.arguments['harddrive'].keep_partitions = False
|
||||
|
||||
print(f" ! Formatting {archinstall.arguments['harddrive']} in ", end='')
|
||||
archinstall.do_countdown()
|
||||
|
||||
|
|
@ -65,4 +67,5 @@ with archinstall.Filesystem(archinstall.arguments['harddrive'], archinstall.GPT)
|
|||
root.mount('/mnt')
|
||||
|
||||
boot.mount('/mnt/boot')
|
||||
|
||||
install_on('/mnt')
|
||||
Loading…
Reference in New Issue