X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Fcli%2Fealt%2Fcmd%2Fapplcm.go;h=2953041dc3b93fe269a8fc5253fd784897107014;hb=8695c40afdce738a635e201d9e3f32d52f8d720f;hp=50fa33c1ec4622438f1ac5c7868efb0a5fd9479e;hpb=caf01eef6ab04caccb08847930d2729794784b64;p=ealt-edge.git diff --git a/ocd/cli/ealt/cmd/applcm.go b/ocd/cli/ealt/cmd/applcm.go index 50fa33c..2953041 100644 --- a/ocd/cli/ealt/cmd/applcm.go +++ b/ocd/cli/ealt/cmd/applcm.go @@ -29,9 +29,10 @@ var applcmCmd = &cobra.Command{ some API which can be used to manage the Applicaton running on the MEP Node The command have following options : 1. Create - 2. Start - 3. Delete - 4. Stop.`, + 2. Info + 3. Start + 4. Delete + 5. Stop.`, } func init() { @@ -40,6 +41,7 @@ func init() { applcmCmd.AddCommand(applcmCmds.NewApplcmStartCommand()) applcmCmd.AddCommand(applcmCmds.NewApplcmDeleteCommand()) applcmCmd.AddCommand(applcmCmds.NewApplcmTerminateCommand()) + applcmCmd.AddCommand(applcmCmds.NewApplcmInfoCommand()) rootCmd.AddCommand(applcmCmd)