Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/btrfs/__init__.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-09-19 23:42:08 +0200
committerGitHub <noreply@github.com>2022-09-19 23:42:08 +0200
commitc1f21e7ca437e1e8a712ec9bed3bfdf3f4c893e5 (patch)
tree9d58187f001d116be5f8f7ca5473eb52c90d94d5 /archinstall/lib/disk/btrfs/__init__.py
parente83a41f3f51f54eccbe9288638759dc9669bfef6 (diff)
Add compression to /etc/fstab for btrfs subvolumes (#1473)
* Adding a btrfs compression plugin to genfstab * Allowing the genfstab plugin to break on success
Diffstat (limited to 'archinstall/lib/disk/btrfs/__init__.py')
-rw-r--r--archinstall/lib/disk/btrfs/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/archinstall/lib/disk/btrfs/__init__.py b/archinstall/lib/disk/btrfs/__init__.py
index 3c183112..a26e0160 100644
--- a/archinstall/lib/disk/btrfs/__init__.py
+++ b/archinstall/lib/disk/btrfs/__init__.py
@@ -54,7 +54,3 @@ def create_subvolume(installation: Installer, subvolume_location :Union[pathlib.
log(f"Creating a subvolume on {target}", level=logging.INFO)
if (cmd := SysCommand(f"btrfs subvolume create {target}")).exit_code != 0:
raise DiskError(f"Could not create a subvolume at {target}: {cmd}")
-
-
-def manage_btrfs_subvolumes(installation :Installer, partition :Dict[str, str]) -> list:
- raise Deprecated("Use setup_subvolumes() instead.")