Sha256: f2d13e6fc9362721a2f38f5d2333476f03eda1220a905397fbae0ee7b60007f2

Contents?: true

Size: 481 Bytes

Versions: 6

Compression:

Stored size: 481 Bytes

Contents

# frozen_string_literal: true

require 'fstab'
require 'dracut'
require 'cryptsetup'

module Getch
  module FileSystem
    module Ext4
      module Encrypt
        class Config
          def initialize
            x
          end

          private

          def x
            Fstab::Encrypt.new(DEVS, OPTIONS).generate
            Dracut::Encrypt.new(DEVS, OPTIONS).generate
            CryptSetup.new(DEVS, OPTIONS).configs
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
getch-0.5.0 lib/getch/filesystem/ext4/encrypt/config.rb
getch-0.3.6 lib/getch/filesystem/ext4/encrypt/config.rb
getch-0.3.5 lib/getch/filesystem/ext4/encrypt/config.rb
getch-0.3.4 lib/getch/filesystem/ext4/encrypt/config.rb
getch-0.3.3 lib/getch/filesystem/ext4/encrypt/config.rb
getch-0.3.0 lib/getch/filesystem/ext4/encrypt/config.rb