Skip to content

Commit

Permalink
Fix Btrfs subvolume mount options (#3108)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefiles authored Jan 12, 2025
1 parent 47736c4 commit 6681501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ def _mount_btrfs_subvol(
) -> None:
for subvol in sorted(subvolumes, key=lambda x: x.relative_mountpoint):
mountpoint = self.target / subvol.relative_mountpoint
mount_options = mount_options + [f'subvol={subvol.name}']
disk.device_handler.mount(dev_path, mountpoint, options=mount_options)
options = mount_options + [f'subvol={subvol.name}']
disk.device_handler.mount(dev_path, mountpoint, options=options)

def generate_key_files(self) -> None:
match self._disk_encryption.encryption_type:
Expand Down

0 comments on commit 6681501

Please sign in to comment.