-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
606cfb4
commit df38b84
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,13 @@ import ( | |
"go.mondoo.com/cnquery/providers/ipmi/provider" | ||
) | ||
|
||
// This is the entry point for the IPMI provider. | ||
// | ||
// To test the provider, start the simulator: | ||
// docker run -d -p 623:623/udp vaporio/ipmi-simulator | ||
// | ||
// Once the simulator is running, you can query it: | ||
// cnquery shell ipmi [email protected] --password 'ADMIN' | ||
func main() { | ||
plugin.Start(os.Args, provider.Init()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters