Skip to content
Snippets Groups Projects
Commit ea0a7782 authored by Eesaan Atluri's avatar Eesaan Atluri
Browse files

Install system packages from production.

parent bb749634
No related branches found
No related tags found
1 merge request!12Install system packages from production.
...@@ -58,6 +58,13 @@ ...@@ -58,6 +58,13 @@
- ruby - ruby
- python3 - python3
state: present state: present
- name: Install system packages
yum:
name: "{{ item }}"
state: present
loop: "{{ lookup('file', 'cheaha-compute-yum-pkg-list.txt').splitlines() }}"
- name: Update nsswitch.conf to look for ldap - name: Update nsswitch.conf to look for ldap
ansible.builtin.replace: ansible.builtin.replace:
dest: /etc/nsswitch.conf dest: /etc/nsswitch.conf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment