Change RHEL yum references to dnf

This commit is contained in:
Chris Hawk 2024-07-26 15:17:30 -07:00
parent 5d28cf0bde
commit 3010182ade
2 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@
when: ansible_os_family == "Debian"
- name: Gcloud | Archive | RedHat | Ensure bash completion is installed
ansible.builtin.yum:
ansible.builtin.dnf:
name:
- bash-completion
register: task_result

View file

@ -1,18 +1,18 @@
---
- name: Gcloud | RHEL | Add an Apt signing key, uses whichever key is at the URL
# https://cloud.google.com/sdk/docs/install#rpm
- name: Gcloud | RHEL | Add a dnf signing key, uses whichever key is at the URL
ansible.builtin.yum_repository:
name: google-cloud-sdk
description: Google Cloud SDK
baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el7-x86_64
baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el9-x86_64
enabled: true
gpgcheck: true
repo_gpgcheck: true
repo_gpgcheck: false
gpgkey:
- https://packages.cloud.google.com/yum/doc/yum-key.gpg
- https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
- name: Gcloud | RHEL | Install the google-cloud-sdk package
ansible.builtin.yum:
ansible.builtin.dnf:
name: google-cloud-sdk
update_cache: "yes"
register: task_result
@ -21,7 +21,7 @@
delay: 2
- name: Gcloud | Debian | Install the google-cloud-sdk additional components
ansible.builtin.yum:
ansible.builtin.dnf:
name: google-cloud-sdk-{{ item }}
update_cache: "yes"
register: task_result