blob: 4bb1a6f2bedefea88c5df245dcc84eeb7a8c471a [file] [log] [blame]
// Package main is the program entrance.
package main
import (
"context"
"flag"
"os"
log "github.com/golang/glog"
"github.com/google/subcommands"
"cmd/cos_gpu_installer/internal/commands"
"pkg/utils"
)
func main() {
// Always log to stderr for easy debugging.
flag.Set("alsologtostderr", "true")
flag.Parse()
log.Info("Checking if this is the only cos_gpu_installer that is running.")
utils.Flock()
subcommands.Register(subcommands.HelpCommand(), "")
subcommands.Register(subcommands.FlagsCommand(), "")
subcommands.Register(subcommands.CommandsCommand(), "")
subcommands.Register(&commands.InstallCommand{}, "")
subcommands.Register(&commands.ListCommand{}, "")
ctx := context.Background()
os.Exit(int(subcommands.Execute(ctx)))
}