Added XDS_SDK_ID and XDS_PROJECT_ID env variables support.
[src/xds/xds-cli.git] / cmd-misc.go
index 1a5d6d4..8b77de0 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2017 "IoT.bzh"
+ * Author Sebastien Douheret <sebastien@iot.bzh>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
 package main
 
 import (
@@ -39,7 +57,8 @@ func xdsVersion(ctx *cli.Context) error {
        }
 
        writer := NewTableWriter()
-       fmt.Fprintln(writer, "Agent ID:\t", ver.Client.ID)
+       fmt.Fprintln(writer, "Agent:")
+       fmt.Fprintln(writer, "      ID:\t", ver.Client.ID)
        v := ver.Client.Version
        if verbose {
                v += " (" + ver.Client.VersionGitTag + ")"
@@ -50,7 +69,8 @@ func xdsVersion(ctx *cli.Context) error {
        }
 
        for _, svr := range ver.Server {
-               fmt.Fprintln(writer, "Server ID:\t", svr.ID)
+               fmt.Fprintln(writer, "Server:")
+               fmt.Fprintln(writer, "       ID:\t", svr.ID)
                v = svr.Version
                if verbose {
                        v += " (" + svr.VersionGitTag + ")"