From 7ac06d75d0785da07d270dc38a7581d74c285cc5 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Fri, 22 Oct 2021 20:43:01 +0200 Subject: Restructured disk.py into lib/disk/.py instead. Shouldn't be any broken links as we expose all the functions through __init__.py - but you never know so I'll keep an eye for issues with this. --- archinstall/lib/disk/btrfs.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 archinstall/lib/disk/btrfs.py (limited to 'archinstall/lib/disk/btrfs.py') diff --git a/archinstall/lib/disk/btrfs.py b/archinstall/lib/disk/btrfs.py new file mode 100644 index 00000000..d6758b3f --- /dev/null +++ b/archinstall/lib/disk/btrfs.py @@ -0,0 +1,4 @@ +from ..general import SysCommand + +def create_subvolume(installation): + SysCommand(f"btrfs subvolume create {installation.target}/@") \ No newline at end of file -- cgit v1.2.3-54-g00ecf