fix(docs/xoa): use wget instead of curl

The version of curl installed on XCP-ng 8.2.0, (curl 7.29.0) does not support any encryption algos available on https://xoa.io
This commit is contained in:
Julien Fontanet 2021-11-09 19:55:49 +01:00
parent 547d318e55
commit fb720d9b05
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ Please only use this if you have issues with [the default way to deploy XOA](ins
Alternatively, you can deploy it by connecting to your XenServer host and executing the following: Alternatively, you can deploy it by connecting to your XenServer host and executing the following:
``` ```
bash -c "$(curl -sS https://xoa.io/deploy)" bash -c "$(wget -qO- https://xoa.io/deploy)"
``` ```
:::tip :::tip
@ -78,7 +78,7 @@ curl: (35) error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protoc
It means that the secure HTTPS protocol is not supported, you can bypass this using the unsecure command instead: It means that the secure HTTPS protocol is not supported, you can bypass this using the unsecure command instead:
``` ```
bash -c "$(curl -sS http://xoa.io/deploy)" bash -c "$(wget -qO- http://xoa.io/deploy)"
``` ```
::: :::

View File

@ -318,7 +318,7 @@ XOSAN is a 100% software defined solution for XenServer hyperconvergence. You ca
You will need to be registered on our website in order to use Xen Orchestra. If you are not yet registered, [here is the way](https://xen-orchestra.com/#!/signup) You will need to be registered on our website in order to use Xen Orchestra. If you are not yet registered, [here is the way](https://xen-orchestra.com/#!/signup)
SSH in your XenServer and use the command line `bash -c "$(curl -sS https://xoa.io/deploy)"` - it will deploy Xen Orchestra Appliance on your XenServer infrastructure which is required to use XOSAN. SSH in your XenServer and use the command line `bash -c "$(wget -qO- https://xoa.io/deploy)"` - it will deploy Xen Orchestra Appliance on your XenServer infrastructure which is required to use XOSAN.
> Note: You can also download the XVA file and follow [these instructions](https://xen-orchestra.com/docs/xoa.html#the-alternative). > Note: You can also download the XVA file and follow [these instructions](https://xen-orchestra.com/docs/xoa.html#the-alternative).