Added success return on format of disks
This commit is contained in:
parent
da36b4f4e1
commit
c2a2e1e5d0
|
|
@ -607,10 +607,12 @@ def format_disk(drive=None, start='512MiB', end='100%', emulate=False, *args, **
|
||||||
return None
|
return None
|
||||||
if sys_command(f'/usr/bin/parted -s {drive} mkpart primary {start} {end}', emulate=emulate).exit_code != 0:
|
if sys_command(f'/usr/bin/parted -s {drive} mkpart primary {start} {end}', emulate=emulate).exit_code != 0:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# TODO: grab paritions after each parted/partition step instead of guessing which partiton is which later on.
|
# TODO: grab paritions after each parted/partition step instead of guessing which partiton is which later on.
|
||||||
# Create one, grab partitions - dub that to "boot" or something. do the next partition, grab that and dub it "system".. or something..
|
# Create one, grab partitions - dub that to "boot" or something. do the next partition, grab that and dub it "system".. or something..
|
||||||
# This "assumption" has bit me in the ass so many times now I've stoped counting.. Jerker is right.. Don't do it like this :P
|
# This "assumption" has bit me in the ass so many times now I've stoped counting.. Jerker is right.. Don't do it like this :P
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
def multisplit(s, splitters):
|
def multisplit(s, splitters):
|
||||||
s = [s,]
|
s = [s,]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue