mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
55 lines
984 B
Go
55 lines
984 B
Go
package main
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
|
|
"github.com/kolide/kit/version"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func init() {
|
|
rand.Seed(time.Now().UnixNano())
|
|
}
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
app.Name = "fleetctl"
|
|
app.Usage = "CLI for operating Kolide Fleet"
|
|
app.Version = version.Version().Version
|
|
cli.VersionPrinter = func(c *cli.Context) {
|
|
version.PrintFull()
|
|
}
|
|
|
|
app.Commands = []cli.Command{
|
|
applyCommand(),
|
|
deleteCommand(),
|
|
setupCommand(),
|
|
loginCommand(),
|
|
logoutCommand(),
|
|
queryCommand(),
|
|
cli.Command{
|
|
Name: "get",
|
|
Usage: "Get/list resources",
|
|
Subcommands: []cli.Command{
|
|
getQueriesCommand(),
|
|
getPacksCommand(),
|
|
getLabelsCommand(),
|
|
getOptionsCommand(),
|
|
getEnrollSecretCommand(),
|
|
},
|
|
},
|
|
cli.Command{
|
|
Name: "config",
|
|
Usage: "Modify how and which Fleet server to connect to",
|
|
Subcommands: []cli.Command{
|
|
configSetCommand(),
|
|
configGetCommand(),
|
|
},
|
|
},
|
|
convertCommand(),
|
|
}
|
|
|
|
app.RunAndExitOnError()
|
|
}
|