You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2023/01/03 16:10:57 UTC

[airavata] branch master updated: Ansible: add some missing dependencies for RL8

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/master by this push:
     new 0f7d619283 Ansible: add some missing dependencies for RL8
0f7d619283 is described below

commit 0f7d619283b6e4edfc54f4de38c82e6f4a07cebd
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Jan 3 11:10:01 2023 -0500

    Ansible: add some missing dependencies for RL8
---
 dev-tools/ansible/roles/django_setup/tasks/install_deps_Rocky_8.yml | 2 ++
 dev-tools/ansible/roles/env_setup/tasks/main.yml                    | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/dev-tools/ansible/roles/django_setup/tasks/install_deps_Rocky_8.yml b/dev-tools/ansible/roles/django_setup/tasks/install_deps_Rocky_8.yml
index 80f8266702..5bf9207b61 100644
--- a/dev-tools/ansible/roles/django_setup/tasks/install_deps_Rocky_8.yml
+++ b/dev-tools/ansible/roles/django_setup/tasks/install_deps_Rocky_8.yml
@@ -30,6 +30,8 @@
     - gcc
     - zlib-devel
     - openssl-devel
+    - make
+    - redhat-rpm-config
   become: yes
 
 - name: Create mod_wsgi directory
diff --git a/dev-tools/ansible/roles/env_setup/tasks/main.yml b/dev-tools/ansible/roles/env_setup/tasks/main.yml
index b8c8e111f6..31cbf4a703 100644
--- a/dev-tools/ansible/roles/env_setup/tasks/main.yml
+++ b/dev-tools/ansible/roles/env_setup/tasks/main.yml
@@ -94,6 +94,12 @@
   become: yes
   when: ansible_distribution == "CentOS"
 
+- name: Install dnf-automatic (Rocky)
+  dnf:
+    name: dnf-automatic
+  become: yes
+  when: ansible_distribution == "Rocky"
+
 - name: Copy dnf-cron.conf config file (Rocky)
   copy:
     src: dnf-cron.conf