From 9d488f55296710347d0b2081e914c196b4908e3c Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Thu, 8 Aug 2013 13:49:39 -0700 Subject: [PATCH] fix(README): change -i to -f --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a0f70ffbb..d8a3f0618 100644 --- a/README.md +++ b/README.md @@ -246,10 +246,10 @@ http://www.g-loaded.eu/2005/11/10/be-your-own-ca/ ``` ```sh -./etcd -clientCert client.crt -clientKey client.key -i +./etcd -clientCert client.crt -clientKey client.key -f ``` -`-i` is to ignore the previously created default configuration file. +`-f` forces new node configuration if existing configuration is found (WARNING: data loss!) `-clientCert` and `-clientKey` are the key and cert for transport layer security between client and server ```sh @@ -276,7 +276,7 @@ And also the response from the etcd server. We also can do authentication using CA cert. The clients will also need to provide their cert to the server. The server will check whether the cert is signed by the CA and decide whether to serve the request. ```sh -./etcd -clientCert client.crt -clientKey client.key -clientCAFile clientCA.crt -i +./etcd -clientCert client.crt -clientKey client.key -clientCAFile clientCA.crt -f ``` ```-clientCAFile``` is the path to the CA cert.