mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-02 14:30:45 +08:00
37 lines
753 B
YAML
37 lines
753 B
YAML
---
|
|
- import_tasks: install.yml
|
|
tags: [faf, faf_install, packages]
|
|
|
|
- import_tasks: update.yml
|
|
when: faf_update|bool
|
|
tags: [faf, faf_update, packages]
|
|
|
|
- import_tasks: first_time_setup.yml
|
|
tags: [faf, faf_fist_time_setup, config]
|
|
|
|
- import_tasks: config.yml
|
|
tags: [faf, faf_config, config]
|
|
|
|
- import_tasks: migrate_db.yml
|
|
when: faf_migrate_db|bool
|
|
tags: [faf, faf_migrate_db]
|
|
|
|
- import_tasks: cron.yml
|
|
when: faf_cron_jobs|bool
|
|
tags: [faf, config]
|
|
|
|
- import_tasks: web.yml
|
|
when: faf_with_web|bool
|
|
tags: [faf, faf_web]
|
|
|
|
- import_tasks: check.yml
|
|
when: faf_check|bool
|
|
tags: [faf, faf_check]
|
|
|
|
- import_tasks: check_web.yml
|
|
when: faf_check_web|bool
|
|
tags: [faf, faf_check_web]
|
|
|
|
- import_tasks: cleanup.yml
|
|
tags: [faf, cleanup]
|