From 9e8804b28a8df6af371c4632f6ca073fc728d660 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Thu, 21 Mar 2024 10:57:23 +0100 Subject: [PATCH] Fix typo in var name --- defaults/main/install.yml | 4 ++-- tasks/install-package.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/defaults/main/install.yml b/defaults/main/install.yml index e03a861..ae0bb89 100644 --- a/defaults/main/install.yml +++ b/defaults/main/install.yml @@ -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" @@ -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 diff --git a/tasks/install-package.yml b/tasks/install-package.yml index e9512ea..3d2b8e6 100644 --- a/tasks/install-package.yml +++ b/tasks/install-package.yml @@ -29,7 +29,7 @@ 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: @@ -37,13 +37,13 @@ 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: