1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 14:48:55 +00:00

First class consoles

This commit is contained in:
Josh Curl
2016-06-06 15:13:15 -07:00
parent b83f0ec092
commit 719d255636
16 changed files with 302 additions and 103 deletions

View File

@@ -9,6 +9,7 @@ import (
"github.com/rancher/os/cmd/network"
"github.com/rancher/os/cmd/power"
"github.com/rancher/os/cmd/respawn"
"github.com/rancher/os/cmd/switchconsole"
"github.com/rancher/os/cmd/sysinit"
"github.com/rancher/os/cmd/systemdocker"
"github.com/rancher/os/cmd/userdocker"
@@ -28,6 +29,7 @@ var entrypoints = map[string]func(){
"respawn": respawn.Main,
"ros-sysinit": sysinit.Main,
"shutdown": power.Main,
"switch-console": switchconsole.Main,
"system-docker": systemdocker.Main,
"user-docker": userdocker.Main,
"wait-for-docker": wait.Main,