From 38cf50de2a480fc7c91f9eaf83bba360e592aa50 Mon Sep 17 00:00:00 2001 From: Bill Anastasiadis Date: Mon, 30 Sep 2024 10:45:18 +0200 Subject: [PATCH] Install missing fence_gce dependency --- ansible/playbooks/tasks/cluster-bootstrap.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ansible/playbooks/tasks/cluster-bootstrap.yaml b/ansible/playbooks/tasks/cluster-bootstrap.yaml index 830c7b18..3fc38944 100644 --- a/ansible/playbooks/tasks/cluster-bootstrap.yaml +++ b/ansible/playbooks/tasks/cluster-bootstrap.yaml @@ -270,6 +270,16 @@ register: stonith_config_result failed_when: "'ERROR' in stonith_config_result.stderr" +# This is a workaround for https://bugzilla.suse.com/show_bug.cgi?id=1231153 +# If it is fixed, this task will no longer be needed +- name: Install python-httplib2 via zypper + zypper: + name: python-httplib2 + state: present + when: ansible_distribution_major_version == '12' + register: httplib2_zypper + ignore_errors: true + # The following STONITH commands for GCP have been adapted from # https://cloud.google.com/solutions/sap/docs/sap-hana-ha-config-sles#create_the_fencing_device_resources - name: Configure GCP Native Fencing STONITH for Primary