moved ddns, partkeepr, hass to podman, selinux

This commit is contained in:
Bastian de Byl
2022-04-30 03:44:55 -04:00
parent b228012d5a
commit cb2001357f
61 changed files with 481 additions and 307 deletions

View File

@@ -2,3 +2,18 @@
- import_tasks: deps.yml
- import_tasks: security.yml
- import_tasks: service.yml
- name: create the docker group
become: true
ansible.builtin.group:
name: docker
state: present
tags: common
- name: add default user to docker group
become: true
ansible.builtin.user:
name: "{{ ansible_user }}"
groups: docker
append: true
tags: common