etcd/etcdctl/main.go

47 lines
1.1 KiB
Go
Raw Normal View History

2016-05-13 06:51:39 +03:00
// Copyright 2016 The etcd Authors
//
// 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.
// etcdctl is a command line application that controls etcd.
2014-10-23 03:59:29 +04:00
package main
import (
2016-03-28 20:49:03 +03:00
"fmt"
2014-10-23 03:59:29 +04:00
"os"
"go.etcd.io/etcd/etcdctl/ctlv2"
"go.etcd.io/etcd/etcdctl/ctlv3"
2016-03-28 20:49:03 +03:00
)
const (
apiEnv = "ETCDCTL_API"
2014-10-23 03:59:29 +04:00
)
func main() {
2016-03-28 20:49:03 +03:00
apiv := os.Getenv(apiEnv)
// unset apiEnv to avoid side-effect for future env and flag parsing.
os.Unsetenv(apiEnv)
if len(apiv) == 0 || apiv == "3" {
ctlv3.Start()
2016-03-28 20:49:03 +03:00
return
2014-10-23 03:59:29 +04:00
}
2016-03-28 20:49:03 +03:00
if apiv == "2" {
ctlv2.Start()
2016-03-28 20:49:03 +03:00
return
2014-10-23 03:59:29 +04:00
}
2014-10-30 00:37:24 +03:00
2016-03-28 20:49:03 +03:00
fmt.Fprintln(os.Stderr, "unsupported API version", apiv)
os.Exit(1)
2014-10-23 03:59:29 +04:00
}