Skip to content

Commit 728fee4

Browse files
authored
Fix root partition device mapper name (archlinux#3524)
1 parent 426650a commit 728fee4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

archinstall/lib/models/device_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,8 @@ def is_create_or_modify(self) -> bool:
10101010

10111011
@property
10121012
def mapper_name(self) -> str | None:
1013+
if self.is_root():
1014+
return 'root'
10131015
if self.is_home():
10141016
return 'home'
10151017
if self.dev_path:

0 commit comments

Comments
 (0)