Script examples should escape special chars

This commit is contained in:
David Pilato 2015-02-04 17:11:56 +01:00
parent 3ef4cc5a78
commit de24b379ee
1 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ azure vm create azure-elasticsearch-cluster \
--vm-size extrasmall \
--ssh 22 \
--ssh-cert /tmp/azure-certificate.pem \
elasticsearch password1234!!
elasticsearch password1234\!\!
```
You should see something like:
@ -327,7 +327,7 @@ azure vm create azure-elasticsearch-cluster \
--vm-size extrasmall \
--ssh 22 \
--ssh-cert /tmp/azure-certificate.pem \
elasticsearch password1234!!
elasticsearch password1234\!\!
```
> **Note:** It could happen that azure changes the endpoint public IP address.
@ -352,7 +352,7 @@ for x in $(seq 2 10)
--ssh $((21 + $x)) \
--ssh-cert /tmp/azure-certificate.pem \
--connect \
elasticsearch password1234!!
elasticsearch password1234\!\!
done
```