Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sap_swpm: append other product id suffix #528

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion roles/sap_swpm/tasks/pre_install/install_type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
# Determine Installation Type
################

# Ignore Product IDs for SAP NetWeaver 7.5 Java standalone:
# - Advanced Adapter Engine (AE) with .AE .AEHA
# - Advanced Adapter Engine Extended (AEX) with .AEX .AEXHA
# - Process Integration / Process Orchestration (PI/PO) with .PI .PIHA .PIABAP .PIABAPHA .PIJAVA .PIJAVAHA

#- name: SAP SWPM Pre Install - Check if general SAP Software installation
# ansible.builtin.set_fact:
# sap_swpm_swpm_installation_type: "general"
Expand All @@ -31,7 +36,7 @@
sap_swpm_swpm_installation_type: "ha"
sap_swpm_swpm_installation_header: "High Availability Installation using virtual hostname"
when:
- "'.ABAPHA' in sap_swpm_product_catalog_id"
- "'.ABAPHA' in sap_swpm_product_catalog_id or '.HA' in sap_swpm_product_catalog_id or '.HACP' in sap_swpm_product_catalog_id"

- name: SAP SWPM Pre Install - Check if installation using SAP Maintenance Planner
ansible.builtin.set_fact:
Expand Down