Fix missing packages for venv
Fix first startup in systemd
This commit is contained in:
parent
bd1f506d8b
commit
ebff3f1712
|
@ -5,7 +5,6 @@ After=network-online.target
|
|||
[Service]
|
||||
Type=simple
|
||||
User=homeassistant
|
||||
WorkingDirectory=/home/homeassistant/.homeassistant
|
||||
ExecStart=/srv/homeassistant/bin/hass -c "/home/homeassistant/.homeassistant"
|
||||
|
||||
[Install]
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
- python3
|
||||
- python3-dev
|
||||
- python3-venv
|
||||
- python3-virtualenv
|
||||
- python3-pip
|
||||
- libffi-dev
|
||||
- libssl-dev
|
||||
|
@ -21,6 +22,14 @@
|
|||
name: homeassistant
|
||||
virtualenv: /srv/homeassistant
|
||||
|
||||
- name: Fix permissions.
|
||||
ansible.builtin.file:
|
||||
path: /srv/homeassistant
|
||||
state: directory
|
||||
owner: homeassistant
|
||||
group: homeassistant
|
||||
recurse: yes
|
||||
|
||||
- name: Create home-assistant systemd service.
|
||||
ansible.builtin.copy:
|
||||
src: homeassistant.service
|
||||
|
@ -34,3 +43,4 @@
|
|||
name: homeassistant
|
||||
state: started
|
||||
enabled: yes
|
||||
daemon-reload: yes
|
||||
|
|
Loading…
Reference in New Issue