Skip to content

Commit

Permalink
update yum to dnf
Browse files Browse the repository at this point in the history
  • Loading branch information
ajanis committed Jun 19, 2024
1 parent 73a7b59 commit b8d50b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/ldap_client_redhat.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: Install the openldap client and required Packages for RedHat
ansible.builtin.yum:
ansible.builtin.dnf:
name: "{{ openldap_client_pkgs }}"
state: present
update_cache: true
Expand Down Expand Up @@ -96,7 +96,7 @@
- restart_login_services

- name: Autofs packages
ansible.builtin.yum:
ansible.builtin.dnf:
name: autofs
state: present
update_cache: true
Expand Down
2 changes: 1 addition & 1 deletion tasks/ldap_server_install.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: Install the openldap and required Packages for RedHat
ansible.builtin.yum:
ansible.builtin.dnf:
name: "{{ openldap_server_pkgs }}"
state: present
when: ansible_os_family == 'RedHat'
Expand Down

0 comments on commit b8d50b7

Please sign in to comment.