Skip to content

Commit

Permalink
Merge pull request #453 from vzell/vz-oracle-linux
Browse files Browse the repository at this point in the history
Added "Oracle Linux" support
  • Loading branch information
gclough authored Oct 25, 2019
2 parents 6201a1c + 17c7155 commit ec4f4c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/install_dnf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# validate www.postgresql.org (or probably any other source).

- block:
- name: PostgrSQL | Install all the required depedencies | dnf
- name: PostgrSQL | Install all the required dependencies | dnf
dnf:
name: "ca-certificates, python-pycurl, glibc-common, libselinux-python, python*-psycopg2"
state: present
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
tags: [postgresql, postgresql-install]

- import_tasks: install_yum.yml
when: ansible_pkg_mgr == "yum" and ( ansible_distribution == "RedHat" or ansible_distribution == "CentOS" )
when: ansible_pkg_mgr == "yum" and ( ansible_distribution == "RedHat" or ansible_distribution == "CentOS" or ansible_distribution == "OracleLinux")
tags: [postgresql, postgresql-install]

- import_tasks: install_dnf.yml
Expand Down

0 comments on commit ec4f4c7

Please sign in to comment.