Sha256: fc9cfdfb9e3d25922b907c3f3cc4bd6bac92a0b49cb73a73cf3a002810daa875
Contents?: true
Size: 646 Bytes
Versions: 9
Compression:
Stored size: 646 Bytes
Contents
# frozen_string_literal: true module Getch module FileSystem module Ext4 module Encrypt class Deps def initialize install service end protected def install case OPTIONS[:os] when 'gentoo' then Install.new('sys-fs/cryptsetup') when 'void' then Install.new('cryptsetup') end end def service openrc end def openrc Helpers.openrc? || return Chroot.new('rc-update add dmcrypt boot') end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems