Skip to content

Update step 1 to add group #2194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/_docs/installation/virtualenv.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ $ sudo apt-get install python-pip python3-dev
$ sudo pip install --upgrade virtualenv
```

### {% linkable_title Step 1: Create a Home Assistant user %}
### {% linkable_title Step 1: Create a Home Assistant user & group %}

This step is optional, but it's a good idea to give services like Home Assistant their own user. It gives you more granular control over permissions, and reduces the exposure to the rest of your system in the event there is a security related bug in Home Assistant. This is a reasonably Linux oriented step, and will look different on other operating systems (or even other Linux distributions).

```bash
$ sudo adduser --system homeassistant
$ sudo addgroup homeassistant
```

Home Assistant stores its configuration in `$HOME/.homeassistant` by default, so in this case, it would be in `/home/homeassistant/.homeassistant`
Expand Down