Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk2/btrfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/disk2/btrfs.py')
-rw-r--r--archinstall/lib/disk2/btrfs.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/archinstall/lib/disk2/btrfs.py b/archinstall/lib/disk2/btrfs.py
index 549d23c1..d6758b3f 100644
--- a/archinstall/lib/disk2/btrfs.py
+++ b/archinstall/lib/disk2/btrfs.py
@@ -1,9 +1,4 @@
-def create_subvolume(partition):
- if partition['mountpoint'] == '/':
- partition['filesystem']['subvolume'] = '@'
- elif partition['mountpoint'] == '/home':
- partition['filesystem']['subvolume'] = '@home'
+from ..general import SysCommand
- # @.snapshots /.snapshots
- # @log /var/log
- # @pkg /var/cache/pacman/pkg \ No newline at end of file
+def create_subvolume(installation):
+ SysCommand(f"btrfs subvolume create {installation.target}/@") \ No newline at end of file