From 1d1cba2b55e31178bcf3b6ce3ec08a78001dc6a5 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Lopez Date: Thu, 5 Dec 2024 20:26:12 +0100 Subject: [PATCH] Fix typo in var name (#236) --- defaults/main/install.yml | 2 +- tasks/install-package.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/defaults/main/install.yml b/defaults/main/install.yml index 938e734..364177d 100644 --- a/defaults/main/install.yml +++ b/defaults/main/install.yml @@ -34,7 +34,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 e3ea60e..9732093 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: