ansible/roles/abrt/faf-post/tasks/main.yml
Ryan Lerch 89f6f1fc32 Fix majority of remaining yamllint warnings and errors
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2024-11-28 17:31:45 +10:00

17 lines
312 B
YAML

---
- import_tasks: opsys_and_releases.yml
- import_tasks: repositories.yml
- name: Ensure directory for FAF database backups exists
file:
path: "{{ faf_backup_dir }}"
state: directory
owner: faf
group: faf
mode: "0750"
when: env != 'staging'
- import_tasks: cron.yml
tags: cron
...