We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05441a4 commit 4d73d69Copy full SHA for 4d73d69
archinstall/lib/luks.py
@@ -19,9 +19,6 @@ class Luks2:
19
key_file: Path | None = None
20
auto_unmount: bool = False
21
22
- # will be set internally after unlocking the device
23
- _mapper_dev: Path | None = None
24
-
25
@property
26
def mapper_dev(self) -> Path | None:
27
if self.mapper_name:
@@ -172,8 +169,6 @@ def lock(self) -> None:
172
169
debug(f"Closing crypt device {child.name}")
173
170
SysCommand(f"cryptsetup close {child.name}")
174
171
175
- self._mapper_dev = None
176
177
def create_keyfile(self, target_path: Path, override: bool = False) -> None:
178
"""
179
Routine to create keyfiles, so it can be moved elsewhere
0 commit comments