index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-09-18 14:54:42 +0200 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-09-18 14:54:42 +0200 |
commit | 68212dd32cf10e263456ae69cead762731667775 (patch) | |
tree | 74cd15fa9a6fb9dda14c85a5d7feea79724daa49 /archinstall/lib/disk2 | |
parent | 6a125d5bd2e5e0c27dc1feb3598e2e60a0526dd8 (diff) |
-rw-r--r-- | archinstall/lib/disk2/btrfs.py | 9 |
diff --git a/archinstall/lib/disk2/btrfs.py b/archinstall/lib/disk2/btrfs.py new file mode 100644 index 00000000..549d23c1 --- /dev/null +++ b/archinstall/lib/disk2/btrfs.py @@ -0,0 +1,9 @@ +def create_subvolume(partition): + if partition['mountpoint'] == '/': + partition['filesystem']['subvolume'] = '@' + elif partition['mountpoint'] == '/home': + partition['filesystem']['subvolume'] = '@home' + + # @.snapshots /.snapshots + # @log /var/log + # @pkg /var/cache/pacman/pkg
\ No newline at end of file |