mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
Separated auth from util and fixed help strings
This commit is contained in:
parent
dce823c6d8
commit
3287d76588
4 changed files with 10 additions and 11 deletions
|
|
@ -17,10 +17,9 @@ import (
|
|||
var crawlCmd = &cobra.Command{
|
||||
Use: "crawl [uri]",
|
||||
Short: "Crawl a single BMC for inventory information",
|
||||
Long: "Crawl a single BMC for inventory information. This command does NOT store information" +
|
||||
"store information about the scan into cache after completion. To do so, use the 'collect'" +
|
||||
"command instead\n" +
|
||||
"\n" +
|
||||
Long: "Crawl a single BMC for inventory information. This command does NOT store information\n" +
|
||||
"store information about the scan into cache after completion. To do so, use the 'collect'\n" +
|
||||
"command instead\n\n" +
|
||||
"Examples:\n" +
|
||||
" magellan crawl https://bmc.example.com\n" +
|
||||
" magellan crawl https://bmc.example.com -i -u username -p password",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"os"
|
||||
|
||||
magellan "github.com/OpenCHAMI/magellan/internal"
|
||||
"github.com/OpenCHAMI/magellan/internal/util"
|
||||
"github.com/OpenCHAMI/magellan/pkg/auth"
|
||||
"github.com/lestrrat-go/jwx/jwt"
|
||||
"github.com/rs/zerolog/log"
|
||||
"github.com/spf13/cobra"
|
||||
|
|
@ -30,7 +30,7 @@ var loginCmd = &cobra.Command{
|
|||
// check if we have a valid JWT before starting login
|
||||
if !forceLogin {
|
||||
// try getting the access token from env var
|
||||
testToken, err := util.LoadAccessToken(tokenPath)
|
||||
testToken, err := auth.LoadAccessToken(tokenPath)
|
||||
if err != nil {
|
||||
log.Error().Err(err).Msgf("failed to load access token")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import (
|
|||
|
||||
magellan "github.com/OpenCHAMI/magellan/internal"
|
||||
"github.com/OpenCHAMI/magellan/internal/cache/sqlite"
|
||||
"github.com/OpenCHAMI/magellan/internal/util"
|
||||
"github.com/OpenCHAMI/magellan/pkg/client"
|
||||
"github.com/rs/zerolog/log"
|
||||
|
||||
"github.com/cznic/mathutil"
|
||||
|
|
@ -40,7 +40,7 @@ var scanCmd = &cobra.Command{
|
|||
"by using the '--subnet' flag and providing an IP address on the subnet as well as a CIDR. If no CIDR is\n" +
|
||||
"provided, then the subnet mask specified with the '--subnet-mask' flag will be used instead (will use\n" +
|
||||
"default mask if not set).\n\n" +
|
||||
"Similarly, any host provided with no port with use either the ports specified\n" +
|
||||
"Similarly, any host provided with no port will use either the ports specified\n" +
|
||||
"with `--port` or the default port used with each specified protocol. The default protocol is 'tcp' unless\n" +
|
||||
"specified. The `--scheme` flag works similarly and the default value is 'https' in the host URL or with the\n" +
|
||||
"'--protocol' flag.\n\n" +
|
||||
|
|
@ -72,8 +72,8 @@ var scanCmd = &cobra.Command{
|
|||
}
|
||||
|
||||
// format and combine flag and positional args
|
||||
targetHosts = append(targetHosts, util.FormatHostUrls(args, ports, scheme, verbose)...)
|
||||
targetHosts = append(targetHosts, util.FormatHostUrls(hosts, ports, scheme, verbose)...)
|
||||
targetHosts = append(targetHosts, client.FormatHostUrls(args, ports, scheme, verbose)...)
|
||||
targetHosts = append(targetHosts, client.FormatHostUrls(hosts, ports, scheme, verbose)...)
|
||||
|
||||
// add more hosts specified with `--subnet` flag
|
||||
if debug {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ var (
|
|||
var updateCmd = &cobra.Command{
|
||||
Use: "update hosts...",
|
||||
Short: "Update BMC node firmware",
|
||||
Long: "Perform an firmware update using Redfish by providing a remote firmware URL and component.\n" +
|
||||
Long: "Perform an firmware update using Redfish by providing a remote firmware URL and component.\n\n" +
|
||||
"Examples:\n" +
|
||||
" magellan update --bmc.host 172.16.0.108 --bmc.port 443 --username bmc_username --password bmc_password --firmware-url http://172.16.0.200:8005/firmware/bios/image.RBU --component BIOS\n" +
|
||||
" magellan update --status --bmc.host 172.16.0.108 --bmc.port 443 --username bmc_username --password bmc_password",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue