Initial commit

This commit is contained in:
2024-10-30 01:50:38 +01:00
commit 587ca23374
147 changed files with 7521 additions and 0 deletions

19
roles/pbr/tasks/main.yml Normal file
View File

@@ -0,0 +1,19 @@
---
# Install required packages
- name: Install required packages
ansible.builtin.include_tasks: prepare.yml
# Configure pbr service settings
- name: Configure pbr service settings
ansible.builtin.include_tasks: service.yml
# Configure pbr policies
- name: Configure pbr policies
ansible.builtin.include_tasks: policy.yml
loop: "{{ pbr_policies | default([]) }}"
# Apply changes and reload pbr service
- name: Apply changes and reload pbr
uci:
command: commit
notify: Reload pbr