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_netweaver_preconfigure: Sync with applicable SAP notes for Adobe DS #888

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion roles/sap_netweaver_preconfigure/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sap_netweaver_preconfigure_fail_if_not_enough_swap_space_configured: true

sap_netweaver_preconfigure_rpath: '/usr/sap/lib'

sap_netweaver_preconfigure_use_adobe_doc_services: true
sap_netweaver_preconfigure_use_adobe_doc_services: false

# (SUSE specific) Version of saptune to install.
# It is recommended to install latest version by keeping this variable empty.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
state: present
name: "{{ __sap_netweaver_preconfigure_packages }}"

- name: Ensure required packages for Adobe Document Services are installed
- name: Ensure required packages for Adobe Document Services are installed, x86_64 only
ansible.builtin.package:
state: present
name: "{{ __sap_netweaver_preconfigure_adobe_doc_services_packages }}"
when: sap_netweaver_preconfigure_use_adobe_doc_services
when:
- ansible_architecture == 'x86_64'
- sap_netweaver_preconfigure_use_adobe_doc_services
17 changes: 9 additions & 8 deletions roles/sap_netweaver_preconfigure/vars/RedHat_7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,34 @@ __sap_netweaver_preconfigure_sapnotes_versions:
__sap_netweaver_preconfigure_packages:
- tuned-profiles-sap

# SAP note 2135057 v11:
__sap_netweaver_preconfigure_adobe_doc_services_packages:
- autoconf.noarch
- automake.noarch
- cyrus-sasl.x86_64
- expat.x86_64
- fontconfig.x86_64
- freetype.x86_64
- glibc.x86_64
- glibc-devel.x86_64
- glibc.i686
- glibc-devel.i686
- keyutils-libs.x86_64
- krb5-libs.x86_64
- libcom_err.x86_64
- libgcc.x86_64
- libgcc.i686
- libidn.x86_64
- libidn-devel.x86_64
- libselinux.x86_64
- libssh2.x86_64
- libX11.x86_64
- libXau.x86_64
- libxcb.x86_64
- libX11.i686
- libXau.i686
- libxcb.i686
- nspr.x86_64
- nss.x86_64
- nss-softokn.x86_64
- nss-softokn-freebl.x86_64
- nss-softokn-freebl.i686
- nss-util.x86_64
- openldap.x86_64
- openssl.x86_64
- transfig.x86_64
- zlib.x86_64
- libuuid.x86_64
- libuuid.i686
2 changes: 1 addition & 1 deletion roles/sap_netweaver_preconfigure/vars/RedHat_8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ __sap_netweaver_preconfigure_sapnotes_versions:
__sap_netweaver_preconfigure_packages:
- tuned-profiles-sap

# SAP note 2920407 v6:
__sap_netweaver_preconfigure_adobe_doc_services_packages:
- autoconf.noarch
- automake.noarch
Expand All @@ -26,7 +27,6 @@ __sap_netweaver_preconfigure_adobe_doc_services_packages:
- libcom_err.x86_64
- libidn2.x86_64
- libselinux.x86_64
- libssh2.x86_64
- libxcb.i686
- nspr.x86_64
- nss.x86_64
Expand Down
2 changes: 1 addition & 1 deletion roles/sap_netweaver_preconfigure/vars/RedHat_9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ __sap_netweaver_preconfigure_sapnotes_versions:
__sap_netweaver_preconfigure_packages:
- tuned-profiles-sap

# SAP note 3242422 v2:
__sap_netweaver_preconfigure_adobe_doc_services_packages:
- autoconf.noarch
- automake.noarch
Expand All @@ -24,7 +25,6 @@ __sap_netweaver_preconfigure_adobe_doc_services_packages:
- libcom_err.x86_64
- libidn2.x86_64
- libselinux.x86_64
- libssh2.x86_64
- libxcb.i686
- nspr.x86_64
- nss.x86_64
Expand Down
Loading