index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-03-29 07:35:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 07:35:04 +0000 |
commit | 5e3a1523644abe3dc0c06ff17dbaeafb5a3cbda4 (patch) | |
tree | e9556862c88a43d88ba2f18ddfcd187285baedb4 /archinstall | |
parent | 6cba404b75abb3faa939c8d6c7e29610591f3cc3 (diff) | |
parent | ed565e13481cce7ac3b640f0ad933605f6ad63c3 (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 10 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index c1db3dc9..9afece2e 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -142,7 +142,8 @@ class Partition(): self.target_mountpoint = mountpoint self.filesystem = filesystem self.size = size # TODO: Refresh? - self._encrypted = encrypted + self._encrypted = None + self.encrypted = encrypted self.allow_formatting = False # A fail-safe for unconfigured partitions, such as windows NTFS partitions. if mountpoint: @@ -161,7 +162,7 @@ class Partition(): self.filesystem = fstype if self.filesystem == 'crypto_LUKS': - self._encrypted = True + self.encrypted = True def __lt__(self, left_comparitor): if type(left_comparitor) == Partition: @@ -269,6 +270,11 @@ class Partition(): if allow_formatting is None: allow_formatting = self.allow_formatting + # To avoid "unable to open /dev/x: No such file or directory" + start_wait = time.time() + while pathlib.Path(path).exists() is False and time.time() - start_wait < 10: + time.sleep(0.025) + if not allow_formatting: raise PermissionError(f"{self} is not formatable either because instance is locked ({self.allow_formatting}) or a blocking flag was given ({allow_formatting})") |