diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-09-04 05:11:04 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-09-04 05:11:04 +0000 |
commit | e8ab86cf153ab133a21c29a5b41ed1868cf2c279 (patch) | |
tree | 0483ebbf7981980bc469b39f0cdc0af95f7ad1f5 /runsc/main.go | |
parent | a7c3bed24f55b64d8f181dc031722e620b6dec59 (diff) | |
parent | 67a2ab1438cdccbe045143bbfaa807cf83110ebc (diff) |
Merge 67a2ab14 (automated)
Diffstat (limited to 'runsc/main.go')
-rw-r--r-- | runsc/main.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runsc/main.go b/runsc/main.go index 70f06dbb8..0ff68160d 100644 --- a/runsc/main.go +++ b/runsc/main.go @@ -88,6 +88,11 @@ func main() { subcommands.Register(help, "") subcommands.Register(subcommands.FlagsCommand(), "") + // Installation helpers. + const helperGroup = "helpers" + subcommands.Register(new(cmd.Install), helperGroup) + subcommands.Register(new(cmd.Uninstall), helperGroup) + // Register user-facing runsc commands. subcommands.Register(new(cmd.Checkpoint), "") subcommands.Register(new(cmd.Create), "") |