Blame change-4001-to-2379-in-help-and-README.patch

c61da59
From 3bc5bbbee3fdedcd26047c5aaaa8c6b3d68503b9 Mon Sep 17 00:00:00 2001
c61da59
From: Jan Chaloupka <jchaloup@redhat.com>
c61da59
Date: Thu, 10 Sep 2015 16:38:02 +0200
c61da59
Subject: [PATCH] change 4001 to 2379 in help and README
c61da59
c61da59
---
c61da59
 README.md | 2 +-
c61da59
 main.go   | 2 +-
c61da59
 2 files changed, 2 insertions(+), 2 deletions(-)
c61da59
c61da59
diff --git a/README.md b/README.md
c61da59
index 65b0c1f..d27d954 100644
c61da59
--- a/README.md
c61da59
+++ b/README.md
c61da59
@@ -178,7 +178,7 @@ $ flanneld --remote=10.0.0.3:8888 --networks=blue,green
c61da59
 
c61da59
 ```
c61da59
 --public-ip="": IP accessible by other nodes for inter-host communication. Defaults to the IP of the interface being used for communication.
c61da59
---etcd-endpoints=http://127.0.0.1:4001: a comma-delimited list of etcd endpoints.
c61da59
+--etcd-endpoints=http://127.0.0.1:2379: a comma-delimited list of etcd endpoints.
c61da59
 --etcd-prefix=/coreos.com/network: etcd prefix.
c61da59
 --etcd-keyfile="": SSL key file used to secure etcd communication.
c61da59
 --etcd-certfile="": SSL certification file used to secure etcd communication.
c61da59
diff --git a/main.go b/main.go
c61da59
index 9e10455..88298bc 100644
c61da59
--- a/main.go
c61da59
+++ b/main.go
c61da59
@@ -62,7 +62,7 @@ var opts CmdLineOpts
c61da59
 
c61da59
 func init() {
c61da59
 	flag.StringVar(&opts.publicIP, "public-ip", "", "IP accessible by other nodes for inter-host communication")
c61da59
-	flag.StringVar(&opts.etcdEndpoints, "etcd-endpoints", "http://127.0.0.1:4001,http://127.0.0.1:2379", "a comma-delimited list of etcd endpoints")
c61da59
+	flag.StringVar(&opts.etcdEndpoints, "etcd-endpoints", "http://127.0.0.1:2379", "a comma-delimited list of etcd endpoints")
c61da59
 	flag.StringVar(&opts.etcdPrefix, "etcd-prefix", "/coreos.com/network", "etcd prefix")
c61da59
 	flag.StringVar(&opts.etcdKeyfile, "etcd-keyfile", "", "SSL key file used to secure etcd communication")
c61da59
 	flag.StringVar(&opts.etcdCertfile, "etcd-certfile", "", "SSL certification file used to secure etcd communication")
c61da59
-- 
c61da59
1.9.3
c61da59