Skip to content
This repository has been archived by the owner on May 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #132 from bessonovevgen/master
Browse files Browse the repository at this point in the history
fix deprecation warning in ansible 2.4
  • Loading branch information
dj-wasabi committed Dec 13, 2018
2 parents 1347f1d + 885b2c8 commit 41ecd78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
include_vars: "{{ ansible_os_family }}.yml"

- name: "Install the correct repository"
include: "RedHat.yml"
include_tasks: "RedHat.yml"
when:
- ansible_os_family == "RedHat"

- name: "Install the correct repository"
include: "Debian.yml"
include_tasks: "Debian.yml"
when:
- ansible_os_family == "Debian"

- name: "Installing the postgresql database"
include: "postgresql.yml"
include_tasks: "postgresql.yml"
when:
- zabbix_server_database_long == "postgresql"

- name: "Installing the mysql database"
include: "mysql.yml"
include_tasks: "mysql.yml"
when:
- zabbix_server_database_long == "mysql"

Expand Down

0 comments on commit 41ecd78

Please sign in to comment.