Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/btrfs.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-30 11:00:22 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-30 11:00:22 +0200
commit76dc426a0fb69fa2d8cbc5c76934dc736d2839a6 (patch)
tree016b98fe3a187078b59196314697832d5d1aac84 /archinstall/lib/disk/btrfs.py
parent68b891837c6174d1f75babf42ee6657d4726576b (diff)
Added creating and mounting of subvolume structure for BTRFS.
Diffstat (limited to 'archinstall/lib/disk/btrfs.py')
-rw-r--r--archinstall/lib/disk/btrfs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/archinstall/lib/disk/btrfs.py b/archinstall/lib/disk/btrfs.py
index 558a249e..e9ffec66 100644
--- a/archinstall/lib/disk/btrfs.py
+++ b/archinstall/lib/disk/btrfs.py
@@ -23,7 +23,9 @@ def mount_subvolume(installation, location :Union[pathlib.Path, str], force=Fals
raise DiskError(f"Cannot mount subvolume to {installation.target/location} because it contains data (non-empty folder target)")
# Mount the logical volume to the physical structure
- return SysCommand(f"mount {get_mount_info(installation.target/location)['source']} {installation.target}/{str(location)} -o subvol=@/{str(location)}").exit_code == 0
+ mount_location = get_mount_info(installation.target/location)['source']
+ SysCommand(f"umount {mount_location}")
+ return SysCommand(f"mount {mount_location} {installation.target}/{str(location)} -o subvol=@/{str(location)}").exit_code == 0
def create_subvolume(installation, location :Union[pathlib.Path, str]) -> bool:
"""