Sha256: a29539d81b206ce985fdb03f4f8e7f9b81f4c260a3fcdc695619bd449a45ec86
Contents?: true
Size: 511 Bytes
Versions: 9
Compression:
Stored size: 511 Bytes
Contents
# frozen_string_literal: true require 'sgdisk' module Getch module FileSystem module Ext4 module Minimal class Partition def initialize x end private # Follow https://wiki.archlinux.org/index.php/Partitioning # 1 - /efi of GPT # 2 - Swap # 3 - / # 4 - /home if --separate-home DISK is used def x Sgdisk::Ext4.new(DEVS) end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems