1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 22:32:14 +00:00

Rewrite a few scripts in Go and remove unneeded services

This commit is contained in:
Josh Curl
2016-10-17 14:47:44 -07:00
parent 9755a37fe6
commit a7d405991c
22 changed files with 321 additions and 226 deletions

View File

@@ -24,6 +24,12 @@ func Main() {
}
app.Commands = []cli.Command{
{
Name: "bootstrap",
HideHelp: true,
SkipFlagParsing: true,
Action: bootstrapAction,
},
{
Name: "config",
ShortName: "c",
@@ -72,12 +78,24 @@ func Main() {
HideHelp: true,
Subcommands: osSubcommands(),
},
{
Name: "preload-images",
HideHelp: true,
SkipFlagParsing: true,
Action: preloadImagesAction,
},
{
Name: "tls",
Usage: "setup tls configuration",
HideHelp: true,
Subcommands: tlsConfCommands(),
},
{
Name: "udev-settle",
HideHelp: true,
SkipFlagParsing: true,
Action: udevSettleAction,
},
installCommand,
selinuxCommand(),
}