Skip to content

Commit

Permalink
fix(install): enable module dm_crypt
Browse files Browse the repository at this point in the history
ref: longhorn/longhorn 9153

Signed-off-by: James Lu <james.lu@suse.com>
  • Loading branch information
mantissahz authored and derekbit committed Aug 20, 2024
1 parent f3d8244 commit 954125d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/local/preflight/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (local *Installer) Init() error {
"nfs-common", "open-iscsi",
}
local.modules = []string{
"nfs",
"nfs", "dm_crypt",
}
local.services = []string{
"iscsid",
Expand All @@ -98,7 +98,7 @@ func (local *Installer) Init() error {
"nfs-utils", "iscsi-initiator-utils",
}
local.modules = []string{
"nfs", "iscsi_tcp",
"nfs", "iscsi_tcp", "dm_crypt",
}
local.services = []string{
"iscsid",
Expand All @@ -117,7 +117,7 @@ func (local *Installer) Init() error {
"nfs-client", "open-iscsi",
}
local.modules = []string{
"nfs", "iscsi_tcp",
"nfs", "iscsi_tcp", "dm_crypt",
}
local.services = []string{
"iscsid",
Expand All @@ -136,7 +136,7 @@ func (local *Installer) Init() error {
"nfs-utils", "open-iscsi",
}
local.modules = []string{
"nfs", "iscsi_tcp",
"nfs", "iscsi_tcp", "dm_crypt",
}
local.services = []string{
"iscsid",
Expand Down

0 comments on commit 954125d

Please sign in to comment.