From 34043357da1e6795283c002ed733594714c30923 Mon Sep 17 00:00:00 2001 From: McKenna Jones Date: Mon, 26 Sep 2016 19:47:35 -0700 Subject: [PATCH] cli flag formatting for agent docs and one guide --- website/source/docs/agent/encryption.html.markdown | 3 +-- website/source/docs/agent/watches.html.markdown | 10 +++++----- website/source/docs/guides/outage.html.markdown | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/website/source/docs/agent/encryption.html.markdown b/website/source/docs/agent/encryption.html.markdown index caff772b98..91d960c7bc 100644 --- a/website/source/docs/agent/encryption.html.markdown +++ b/website/source/docs/agent/encryption.html.markdown @@ -34,7 +34,7 @@ the output of [`consul agent`](/docs/commands/agent.html) will include "Encrypte $ cat encrypt.json {"encrypt": "cg8StVXbQJ0gPvMd9o7yrg=="} -$ consul agent -data-dir=/tmp/consul -config-file encrypt.json +$ consul agent -data-dir=/tmp/consul -config-file=encrypt.json ==> WARNING: LAN keyring exists but -encrypt given, using keyring ==> WARNING: WAN keyring exists but -encrypt given, using keyring ==> Starting Consul agent... @@ -93,4 +93,3 @@ also disallow any non-TLS connections. To force clients to use TLS, TLS is used to secure the RPC calls between agents, but gossip between nodes is done over UDP and is secured using a symmetric key. See above for enabling gossip encryption. - diff --git a/website/source/docs/agent/watches.html.markdown b/website/source/docs/agent/watches.html.markdown index 6877b57b48..935489e02d 100644 --- a/website/source/docs/agent/watches.html.markdown +++ b/website/source/docs/agent/watches.html.markdown @@ -86,7 +86,7 @@ Here is an example configuration: Or, using the watch command: - $ consul watch -type key -key foo/bar/baz /usr/bin/my-key-handler.sh + $ consul watch -type=key -key=foo/bar/baz /usr/bin/my-key-handler.sh An example of the output of this command: @@ -123,7 +123,7 @@ Here is an example configuration: Or, using the watch command: - $ consul watch -type keyprefix -prefix foo/ /usr/bin/my-prefix-handler.sh + $ consul watch -type=keyprefix -prefix=foo/ /usr/bin/my-prefix-handler.sh An example of the output of this command: @@ -237,7 +237,7 @@ Here is an example configuration: Or, using the watch command: - $ consul watch -type service -service redis /usr/bin/my-service-handler.sh + $ consul watch -type=service -service=redis /usr/bin/my-service-handler.sh An example of the output of this command: @@ -328,7 +328,7 @@ Here is an example configuration: Or, using the watch command: - $ consul watch -type event -name web-deploy /usr/bin/my-deploy-handler.sh + $ consul watch -type=event -name=web-deploy /usr/bin/my-deploy-handler.sh An example of the output of this command: @@ -350,4 +350,4 @@ An example of the output of this command: To fire a new `web-deploy` event the following could be used: - $ consul event -name web-deploy 1609030 + $ consul event -name=web-deploy 1609030 diff --git a/website/source/docs/guides/outage.html.markdown b/website/source/docs/guides/outage.html.markdown index b82e1bf6ac..404608cba8 100644 --- a/website/source/docs/guides/outage.html.markdown +++ b/website/source/docs/guides/outage.html.markdown @@ -24,7 +24,7 @@ add or remove a server, [see this guide](/docs/guides/servers.html). If you had only a single server and it has failed, simply restart it. Note that a single server configuration requires the [`-bootstrap`](/docs/agent/options.html#_bootstrap) or -[`-bootstrap-expect 1`](/docs/agent/options.html#_bootstrap_expect) flag. If +[`-bootstrap-expect=1`](/docs/agent/options.html#_bootstrap_expect) flag. If the server cannot be recovered, you need to bring up a new server. See the [bootstrapping guide](/docs/guides/bootstrapping.html) for more detail.