Updated frigate playbooks

This commit is contained in:
2023-01-03 11:58:31 +00:00
parent 508e433bab
commit 1913d6417c
2 changed files with 14 additions and 3 deletions
@@ -9,3 +9,14 @@
- name: Execute script
ansible.builtin.shell: /tmp/get-docker.sh
- name: Ensure group "docker" exists
ansible.builtin.group:
name: docker
state: present
- name: Add root user to docker group
ansible.builtin.user:
name: root
groups: docker
append: yes
+3 -3
View File
@@ -1,6 +1,6 @@
---
- name: Update all packages to their latest version
ansible.builtin.apt:
name: "*"
become: true
ansible.builtin.apt:
update_cache: yes
state: latest
upgrade: full