From fee2ef355a16d6dfa470d6ae4f735e4fb47a44b8 Mon Sep 17 00:00:00 2001 From: Qiu Jian Date: Thu, 4 Feb 2021 12:58:26 +0800 Subject: [PATCH] fix(baremetal): try channel 8 for default profile --- pkg/baremetal/profiles/profiles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/baremetal/profiles/profiles.go b/pkg/baremetal/profiles/profiles.go index bb604dafca..d69e70c858 100644 --- a/pkg/baremetal/profiles/profiles.go +++ b/pkg/baremetal/profiles/profiles.go @@ -27,7 +27,7 @@ type IPMIProfile struct { func DefaultProfile() IPMIProfile { return IPMIProfile{ - LanChannel: []int{1}, + LanChannel: []int{1, 2, 8}, RootName: "root", RootId: 2, }