Adding user details (#5970)

Existing instructions are generic `user:group` which causes confusion. Adding a line to create a `homeassistant` user, and then adjusting the following line to use that user.
This commit is contained in:
DubhAd 2018-08-07 12:38:31 +01:00 committed by Fabian Affolter
parent 6082371047
commit 727840866d

View File

@ -27,7 +27,8 @@ To isolate the Home Assistant installation a [venv](https://docs.python.org/3/li
```bash
$ sudo mkdir -p /opt/homeassistant
$ sudo chown -R user:group /opt/homeassistant
$ sudo useradd -rm homeassistant -G dialout,gpio
$ sudo chown -R homeassistant:homeassistant /opt/homeassistant
```
Now switch to the new directory, setup the venv, and activate it.