From bc0081f3583bf197f1bb6a2e8e695e9ecd0f1d1a Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 21 Aug 2024 05:44:52 -0600 Subject: [PATCH] fix: openssl is now required for password openssl is now used to generate passwords, so make it a required basic package. Signed-off-by: Rich Megginson --- vars/RedHat.yml | 2 +- vars/Suse.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/vars/RedHat.yml b/vars/RedHat.yml index 1d824fab..38fccfba 100644 --- a/vars/RedHat.yml +++ b/vars/RedHat.yml @@ -15,13 +15,13 @@ __ha_cluster_role_essential_packages: # even if qnetd is not being configured, it is needed for removing qnetd # configuration - corosync-qnetd + - openssl __ha_cluster_fullstack_node_packages: - corosync - libknet1-plugins-all - resource-agents - pacemaker - - openssl # used in the role for generating preshared keys __ha_cluster_cloud_agents_packages: [] diff --git a/vars/Suse.yml b/vars/Suse.yml index 5bf3b5fe..43a3936e 100644 --- a/vars/Suse.yml +++ b/vars/Suse.yml @@ -19,6 +19,7 @@ __ha_cluster_role_essential_packages: - 'socat' - 'libxml2-tools' - 'rsyslog' + - 'openssl' __ha_cluster_fullstack_node_packages: []