From 504dded1588686ea4ad0c6e1427e831ba7011f45 Mon Sep 17 00:00:00 2001 From: Jakob Reiter Date: Sat, 6 Feb 2016 12:53:14 +0100 Subject: [PATCH 1/2] Fixed ubuntu 14.04 version typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1be1b5e853e45..dd91ef43fdab2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Ansible role for Elasticsearch. Currently this works on Debian and RedHat based linux systems. Tested platforms are: -* Ubuntu 1404 +* Ubuntu 14.04 * Debian 7 * Debian 8 * Centos 6 From 492fdc37507f34a4a9f904281d20919d169b980c Mon Sep 17 00:00:00 2001 From: Jakob Reiter Date: Sat, 6 Feb 2016 13:00:30 +0100 Subject: [PATCH 2/2] Fixed discovery.zen.ping.unicast.hosts example. : didn't work without code formating. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd91ef43fdab2..2926bb467f201 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ When not utilizing multicast, the following should be set to ensure a successful * ```es_config['http.port']``` - the http port for the node * ```es_config['transport.tcp.port']``` - the transport port for the node -* ```es_config['discovery.zen.ping.unicast.hosts']``` - the unicast discovery list, in the comma separated format ":,:" (typically the clusters dedicated masters) +* ```es_config['discovery.zen.ping.unicast.hosts']``` - the unicast discovery list, in the comma separated format ```":,:"``` (typically the clusters dedicated masters) * ```es_config['network.host']``` - sets both network.bind_host and network.publish_host to the same host value. The network.bind_host setting allows to control the host different network components will bind on. The network.publish_host setting allows to control the host the node will publish itself within the cluster so other nodes will be able to connect to it.