Skip to content

Commit

Permalink
(chore): fix linting errors in main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Stev committed Feb 8, 2024
1 parent dce8618 commit bd38bfb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

- name: include os specific vars
include_vars: '{{ item }}'
- name: Include os specific vars
ansible.builtin.include_vars: '{{ item }}'
with_first_found:
- '{{ ansible_distribution }}_{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_os_family }}.yml'
Expand All @@ -10,12 +10,14 @@
- 'role::icinga2_web:install'
- 'role::icinga2_web:config'

- import_tasks: installation.yml
- name: Include installation tasks
ansible.builtin.import_tasks: installation.yml
tags:
- 'role::icinga2_web'
- 'role::icinga2_web:install'

- import_tasks: configuration.yml
- name: Include configuration tasks
ansible.builtin.import_tasks: configuration.yml
tags:
- 'role::icinga2_web'
- 'role::icinga2_web:config'

0 comments on commit bd38bfb

Please sign in to comment.