Script examples should escape special chars
This commit is contained in:
parent
3ef4cc5a78
commit
de24b379ee
|
@ -177,7 +177,7 @@ azure vm create azure-elasticsearch-cluster \
|
||||||
--vm-size extrasmall \
|
--vm-size extrasmall \
|
||||||
--ssh 22 \
|
--ssh 22 \
|
||||||
--ssh-cert /tmp/azure-certificate.pem \
|
--ssh-cert /tmp/azure-certificate.pem \
|
||||||
elasticsearch password1234!!
|
elasticsearch password1234\!\!
|
||||||
```
|
```
|
||||||
|
|
||||||
You should see something like:
|
You should see something like:
|
||||||
|
@ -327,7 +327,7 @@ azure vm create azure-elasticsearch-cluster \
|
||||||
--vm-size extrasmall \
|
--vm-size extrasmall \
|
||||||
--ssh 22 \
|
--ssh 22 \
|
||||||
--ssh-cert /tmp/azure-certificate.pem \
|
--ssh-cert /tmp/azure-certificate.pem \
|
||||||
elasticsearch password1234!!
|
elasticsearch password1234\!\!
|
||||||
```
|
```
|
||||||
|
|
||||||
> **Note:** It could happen that azure changes the endpoint public IP address.
|
> **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 $((21 + $x)) \
|
||||||
--ssh-cert /tmp/azure-certificate.pem \
|
--ssh-cert /tmp/azure-certificate.pem \
|
||||||
--connect \
|
--connect \
|
||||||
elasticsearch password1234!!
|
elasticsearch password1234\!\!
|
||||||
done
|
done
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue