Skip to content

Commit

Permalink
Disable citus repo for RedHat based
Browse files Browse the repository at this point in the history
Tests have shown that distributions such as Rocky Linux, AlmaLinux, Oracle Linux, and CentOS Stream are not yet supported.
  • Loading branch information
vitabaks committed Aug 14, 2024
1 parent e1f648f commit ac64c16
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions roles/add-repository/tasks/extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@
when: ansible_os_family == "Debian"

# RedHat based
- name: Add Citus repository
ansible.builtin.yum_repository:
name: "citusdata"
description: "Citus Repository"
baseurl: "https://repos.citusdata.com/community/yum/{{ ansible_distribution_major_version }}/x86_64"
gpgkey: "https://repos.citusdata.com/community/gpgkey"
gpgcheck: "no"
when: ansible_os_family == "RedHat"
# TODO: Tests have shown that distributions such as Rocky Linux, AlmaLinux, Oracle Linux, and CentOS Stream are not yet supported.
# - name: Add Citus repository
# ansible.builtin.yum_repository:
# name: "citusdata"
# description: "Citus Repository"
# baseurl: "https://repos.citusdata.com/community/yum/{{ ansible_distribution_major_version }}/x86_64"
# gpgkey: "https://repos.citusdata.com/community/gpgkey"
# gpgcheck: "no"
# when: ansible_os_family == "RedHat"
environment: "{{ proxy_env | default({}) }}"
when:
- enable_citus | default(false) | bool
Expand Down

0 comments on commit ac64c16

Please sign in to comment.