We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c33c8d6 + 00f5608 commit 92db325Copy full SHA for 92db325
validator/main.go
@@ -595,9 +595,9 @@ func (m *MOFED) validate() error {
595
}
596
597
func (m *MOFED) runValidation(silent bool) error {
598
- // invoke validation command
599
- command := "grep"
600
- args := []string{"ib_register_peer_memory_client", "/proc/kallsyms"}
+ //check for mlx5_core module to be loaded
+ command := "bash"
+ args := []string{"-c", "lsmod | grep mlx5_core"}
601
602
// If MOFED container is running then use readiness flag set by the driver container instead
603
if os.Getenv(UseHostMOFEDEnvname) != "true" {
0 commit comments