[REV] optimize domain command in release

This commit is contained in:
bay1ts 2017-12-11 15:36:48 +08:00
parent 4b2ca65438
commit bb8266c6ab
2 changed files with 7 additions and 3 deletions

View File

@ -46,10 +46,12 @@ func GetCmds() []cli.Command {
//cmds = append(cmds, NewCmdComputeGroup())
cmds = append(cmds, NewCmdInstall())
cmds = append(cmds, NewCmdInstallStatus())
//cmds = append(cmds, NewCmdInstallStatus())
cmds = append(cmds, NewCmdAddTask())
//cmds = append(cmds, NewCmdStatus())
cmds = append(cmds, NewCmdDomain())
//cmds = append(cmds, NewCmdBaseManageGroup())
//cmds = append(cmds, NewCmdManageGroup())

View File

@ -146,8 +146,10 @@ func initCluster(c *cli.Context) error {
Task(c,"check_manage_base_services",false)
Task(c,"check_manage_services",false)
//done<-1
//一般 job会在通过grctl执行时阻塞输出这种通过 脚本执行的,需要单独查
fmt.Println("install manage node success,next you can :")
fmt.Println(" add compute node--grctl node add -h")
fmt.Println(" install compute node--grctl install compute -h")
fmt.Println(" up compute node--grctl node up -h")
return nil
}