index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/luks.py | 2 |
diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py index ff5e2057..30c38ec8 100644 --- a/archinstall/lib/luks.py +++ b/archinstall/lib/luks.py @@ -83,7 +83,7 @@ class luks2(): # Unmount the child location if child_mountpoint := child.get('mountpoint', None): log(f'Unmounting {child_mountpoint}', level=LOG_LEVELS.Debug) - sys_command(f"umount {child_mountpoint}") + sys_command(f"umount -R {child_mountpoint}") # And close it if possible. log(f"Closing crypt device {child['name']}", level=LOG_LEVELS.Debug) |