commit
66e23af422
|
|
@ -136,7 +136,7 @@ class Partition:
|
|||
@property
|
||||
def partition_type(self):
|
||||
lsblk = json.loads(SysCommand(f"lsblk --json -o+PTTYPE {self.path}").decode('UTF-8'))
|
||||
|
||||
|
||||
for device in lsblk['blockdevices']:
|
||||
return device['pttype']
|
||||
|
||||
|
|
@ -153,7 +153,7 @@ class Partition:
|
|||
partuuid_struct = SysCommand(f'lsblk -J -o+PARTUUID {self.path}')
|
||||
if partuuid_struct.exit_code == 0:
|
||||
if partition_information := next(iter(json.loads(partuuid_struct.decode('UTF-8'))['blockdevices']), None):
|
||||
if (partuuid := partition_information.get('partuuid', None)):
|
||||
if partuuid := partition_information.get('partuuid', None):
|
||||
return partuuid
|
||||
|
||||
time.sleep(storage['DISK_TIMEOUTS'])
|
||||
|
|
@ -172,7 +172,7 @@ class Partition:
|
|||
partuuid_struct = SysCommand(f'lsblk -J -o+PARTUUID {self.path}')
|
||||
if partuuid_struct.exit_code == 0:
|
||||
if partition_information := next(iter(json.loads(partuuid_struct.decode('UTF-8'))['blockdevices']), None):
|
||||
if (partuuid := partition_information.get('partuuid', None)):
|
||||
if partuuid := partition_information.get('partuuid', None):
|
||||
return partuuid
|
||||
|
||||
@property
|
||||
|
|
@ -296,7 +296,7 @@ class Partition:
|
|||
|
||||
elif filesystem == 'f2fs':
|
||||
options = ['-f'] + options
|
||||
|
||||
|
||||
if (handle := SysCommand(f"/usr/bin/mkfs.f2fs {' '.join(options)} {path}")).exit_code != 0:
|
||||
raise DiskError(f"Could not format {path} with {filesystem} because: {handle.decode('UTF-8')}")
|
||||
self.filesystem = filesystem
|
||||
|
|
@ -378,7 +378,7 @@ class Partition:
|
|||
try:
|
||||
self.format(self.filesystem, '/dev/null', log_formatting=False, allow_formatting=True)
|
||||
except (SysCallError, DiskError):
|
||||
pass # We supported it, but /dev/null is not formatable as expected so the mkfs call exited with an error code
|
||||
pass # We supported it, but /dev/null is not formattable as expected so the mkfs call exited with an error code
|
||||
except UnknownFilesystemFormat as err:
|
||||
raise err
|
||||
return True
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ def json_dumps(*args, **kwargs):
|
|||
return json.dumps(*args, **{**kwargs, 'cls': JSON})
|
||||
|
||||
class JsonEncoder:
|
||||
@staticmethod
|
||||
def _encode(obj):
|
||||
"""
|
||||
This JSON encoder function will try it's best to convert
|
||||
|
|
@ -112,6 +113,7 @@ class JsonEncoder:
|
|||
else:
|
||||
return obj
|
||||
|
||||
@staticmethod
|
||||
def _unsafe_encode(obj):
|
||||
"""
|
||||
Same as _encode() but it keeps dictionary keys starting with !
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ class LogLevels:
|
|||
|
||||
|
||||
class Journald(dict):
|
||||
@staticmethod
|
||||
@abc.abstractmethod
|
||||
def log(message, level=logging.DEBUG):
|
||||
try:
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ def ask_user_questions():
|
|||
|
||||
# Get disk encryption password (or skip if blank)
|
||||
if archinstall.arguments['harddrives'] and archinstall.arguments.get('!encryption-password', None) is None:
|
||||
if (passwd := archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): ')):
|
||||
if passwd := archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): '):
|
||||
archinstall.arguments['!encryption-password'] = passwd
|
||||
|
||||
if archinstall.arguments['harddrives'] and archinstall.arguments.get('!encryption-password', None):
|
||||
|
|
|
|||
Loading…
Reference in New Issue