Update example to not pipe curl (#121)
* Update example * Updated to use curl
This commit is contained in:
parent
0742112952
commit
1af6b7249a
1 changed files with 5 additions and 3 deletions
|
@ -15,7 +15,8 @@ This method is considered advanced and should only be used if one is an expert i
|
||||||
Run as root (sudo su):
|
Run as root (sudo su):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -sL https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh | bash -s
|
curl -Lo installer.sh https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh
|
||||||
|
bash installer.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Command line arguments
|
### Command line arguments
|
||||||
|
@ -29,7 +30,8 @@ curl -sL https://raw.githubusercontent.com/home-assistant/supervised-installer/m
|
||||||
you can set these parameters by appending ` --<parameter> <value>` like:
|
you can set these parameters by appending ` --<parameter> <value>` like:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -sL https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh | bash -s -- -m MY_MACHINE
|
curl -Lo installer.sh https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh
|
||||||
|
bash installer.sh --mmachine MY_MACHINE
|
||||||
```
|
```
|
||||||
|
|
||||||
## Supported Machine types
|
## Supported Machine types
|
||||||
|
|
Loading…
Reference in a new issue