mirror of
https://github.com/anchore/grype
synced 2024-11-14 00:07:08 +00:00
35 lines
840 B
Go
35 lines
840 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/anchore/grype/grype/db"
|
|
"github.com/anchore/grype/internal"
|
|
)
|
|
|
|
var dbImportCmd = &cobra.Command{
|
|
Use: "import FILE",
|
|
Short: "import a vulnerability database archive",
|
|
Long: fmt.Sprintf("import a vulnerability database archive from a local FILE.\nDB archives can be obtained from %q.", internal.DBUpdateURL),
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: runDBImportCmd,
|
|
}
|
|
|
|
func init() {
|
|
dbCmd.AddCommand(dbImportCmd)
|
|
}
|
|
|
|
func runDBImportCmd(_ *cobra.Command, args []string) error {
|
|
dbCurator, err := db.NewCurator(appConfig.DB.ToCuratorConfig())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := dbCurator.ImportFrom(args[0]); err != nil {
|
|
return fmt.Errorf("unable to import vulnerability database: %+v", err)
|
|
}
|
|
|
|
return stderrPrintLnf("Vulnerability database imported")
|
|
}
|