mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 17:05:36 -04:00
[mount] Restore @home subvolume
In 942221c764
the fixed-setup
(with /@ and /@home) was replaced by the configurable btrfs
layout, but the default went away. Restore the two-subvolume
layout if nothing is configured.
This commit is contained in:
parent
3531896892
commit
6b2088c94e
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def get_btrfs_subvolumes():
|
|||
if btrfs_subvolumes is None:
|
||||
libcalamares.utils.warning("No configuration for btrfsSubvolumes")
|
||||
if not btrfs_subvolumes:
|
||||
btrfs_subvolumes = [ dict(mountPoint="/", subvolume="/@") ]
|
||||
btrfs_subvolumes = [ dict(mountPoint="/", subvolume="/@"), dict(mountPoint="/home", subvolume="/@home") ]
|
||||
|
||||
return btrfs_subvolumes
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue