Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in var name #236

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions defaults/main/install.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file holds install related configurations as well as base directories for
# configuration files.
# configuration files.

ood_base_conf_dir: "/etc/ood/config"
ood_app_dir: "{{ ood_base_apache_dir }}/apps"
Expand Down Expand Up @@ -32,7 +32,7 @@ disable_gpg_check_rpm_repo: true
apt_update_cache: true

# Set to "true" to skip installation of custom repo config files
ood_use_exiting_repo_file: false
ood_use_existing_repo_file: false

# flip this flag if you want to install the ondemand-dex RPM
install_ondemand_dex: false
Expand Down
6 changes: 3 additions & 3 deletions tasks/install-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@
name: "{{ rpm_repo_url }}"
state: present
disable_gpg_check: "{{ disable_gpg_check_rpm_repo | bool }}"
when: ansible_os_family == "RedHat" and not ood_use_exiting_repo_file
when: ansible_os_family == "RedHat" and not ood_use_existing_repo_file

- name: Install the apt repo
ansible.builtin.apt:
deb: "{{ apt_repo_url }}"
state: present
update_cache: "{{ apt_update_cache | bool }}"
dpkg_options: 'force-confnew'
when: ansible_os_family == "Debian" and not ood_use_exiting_repo_file
when: ansible_os_family == "Debian" and not ood_use_existing_repo_file

- name: Enable epel
ansible.builtin.package:
name: 'epel-release'
state: present
when: ansible_os_family == "RedHat" and not ood_use_exiting_repo_file
when: ansible_os_family == "RedHat" and not ood_use_existing_repo_file

- name: Install rhel/centos:8 dependencies
ansible.builtin.dnf:
Expand Down
Loading