Frigate is an NVR that uses machine learning to detect objects on camera in real time. It integrates with Home Assistant to expose sensors which can be used for automation, etc. The only official way to deploy Frigate is with a container, so we use Podman and systemd to manage it.
9 lines
216 B
YAML
9 lines
216 B
YAML
- name: save firewalld configuration
|
|
command: firewall-cmd --runtime-to-permanent
|
|
- name: reload systemd
|
|
command: systemctl daemon-reload
|
|
- name: restart frigate
|
|
service:
|
|
name: frigate
|
|
state: restarted
|