mirror of
https://github.com/rancher/os.git
synced 2025-05-18 04:50:00 +00:00
67 lines
1.2 KiB
Go
67 lines
1.2 KiB
Go
|
package control
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/codegangsta/cli"
|
||
|
"github.com/rancherio/os/config"
|
||
|
)
|
||
|
|
||
|
func Main() {
|
||
|
app := cli.NewApp()
|
||
|
|
||
|
app.Name = os.Args[0]
|
||
|
app.Usage = "Control and configure RancherOS"
|
||
|
app.Version = config.VERSION
|
||
|
app.Author = "Rancher Labs, Inc."
|
||
|
app.Email = "darren@rancher.com"
|
||
|
|
||
|
app.Commands = []cli.Command{
|
||
|
{
|
||
|
Name: "config",
|
||
|
ShortName: "c",
|
||
|
Usage: "configure settings",
|
||
|
Subcommands: configSubcommands(),
|
||
|
},
|
||
|
{
|
||
|
Name: "module",
|
||
|
ShortName: "m",
|
||
|
Usage: "module settings",
|
||
|
Subcommands: []cli.Command{
|
||
|
{
|
||
|
Name: "activate",
|
||
|
Usage: "turn on a module and possibly reboot",
|
||
|
},
|
||
|
{
|
||
|
Name: "deactivate",
|
||
|
Usage: "turn off a module and possibly reboot",
|
||
|
},
|
||
|
{
|
||
|
Name: "list",
|
||
|
Usage: "list modules and state",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
Name: "os",
|
||
|
Usage: "operating system upgrade/downgrade",
|
||
|
Subcommands: []cli.Command{
|
||
|
{
|
||
|
Name: "list",
|
||
|
Usage: "list available RancherOS versions and state",
|
||
|
},
|
||
|
{
|
||
|
Name: "update",
|
||
|
Usage: "download the latest new version of RancherOS",
|
||
|
},
|
||
|
{
|
||
|
Name: "activate",
|
||
|
Usage: "switch to a new version of RancherOS and reboot",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
app.Run(os.Args)
|
||
|
}
|