Final verification of issue
This commit is contained in:
parent
6af71eee30
commit
1aef9807f9
|
|
@ -226,6 +226,9 @@ class Filesystem():
|
||||||
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0
|
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0
|
||||||
else:
|
else:
|
||||||
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0
|
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0
|
||||||
|
|
||||||
|
import time
|
||||||
|
time.sleep(5)
|
||||||
print('After:', print(self.blockdevice.partitions))
|
print('After:', print(self.blockdevice.partitions))
|
||||||
|
|
||||||
if partitioning:
|
if partitioning:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue