Advertisement
techblog

HA-Create users and folders

Aug 15th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. #Add a user for home assistant
  2. sudo adduser --system homeassistant
  3. sudo addgroup homeassistant
  4.  
  5. #If you plan to use a Z-Wave controller, you will need to add this user to the dialout group
  6. sudo usermod -G dialout -a homeassistant
  7.  
  8. #Create a directory for home assistant
  9. sudo mkdir /srv/homeassistant
  10. sudo chown homeassistant:homeassistant /srv/homeassistant
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement