From 727840866d33d8ed70f174a2ce2def41fb965358 Mon Sep 17 00:00:00 2001 From: DubhAd Date: Tue, 7 Aug 2018 12:38:31 +0100 Subject: [PATCH] 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. --- source/_docs/installation/fedora.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/_docs/installation/fedora.markdown b/source/_docs/installation/fedora.markdown index bbb74f3f001..52f01886f6e 100644 --- a/source/_docs/installation/fedora.markdown +++ b/source/_docs/installation/fedora.markdown @@ -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.