72 lines
5.6 KiB
Diff
72 lines
5.6 KiB
Diff
diff -up redhat.sap_install-1.5.2/roles/sap_general_preconfigure/tasks/RedHat/generic/configure-kernel-parameters.yml.me redhat.sap_install-1.5.2/roles/sap_general_preconfigure/tasks/RedHat/generic/configure-kernel-parameters.yml
|
|
--- redhat.sap_install-1.5.2/roles/sap_general_preconfigure/tasks/RedHat/generic/configure-kernel-parameters.yml.me 2025-01-31 11:52:17.015807194 +0100
|
|
+++ redhat.sap_install-1.5.2/roles/sap_general_preconfigure/tasks/RedHat/generic/configure-kernel-parameters.yml 2025-01-31 11:53:10.121913231 +0100
|
|
@@ -19,6 +19,7 @@
|
|
- name: Construct the command for getting all current parameters of file '{{ sap_general_preconfigure_etc_sysctl_sap_conf }}'
|
|
ansible.builtin.command: awk 'BEGIN{FS="="; printf ("sysctl ")}{printf ("%s ", $1)}' "{{ sap_general_preconfigure_etc_sysctl_sap_conf }}"
|
|
register: __sap_general_preconfigure_register_sap_conf_sysctl_command
|
|
+ check_mode: false
|
|
changed_when: false
|
|
|
|
# Reason for noqa: The command module tries to run the complete string as a single command
|
|
diff -up redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/RedHat/generic/configure-thp.yml.me redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/RedHat/generic/configure-thp.yml
|
|
--- redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/RedHat/generic/configure-thp.yml.me 2025-02-04 10:24:11.654505302 +0100
|
|
+++ redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/RedHat/generic/configure-thp.yml 2025-02-04 10:24:48.064360920 +0100
|
|
@@ -43,7 +43,9 @@
|
|
- name: Set THP to '{{ __sap_hana_preconfigure_fact_thp }}' on the running system
|
|
ansible.builtin.shell: echo '{{ __sap_hana_preconfigure_fact_thp }}' > /sys/kernel/mm/transparent_hugepage/enabled
|
|
changed_when: true
|
|
- when: __sap_hana_preconfigure_register_thp_status_before.stdout.split('[')[1].split(']')[0] != __sap_hana_preconfigure_fact_thp
|
|
+ when:
|
|
+ - not ansible_check_mode
|
|
+ - __sap_hana_preconfigure_register_thp_status_before.stdout.split('[')[1].split(']')[0] != __sap_hana_preconfigure_fact_thp
|
|
|
|
- name: Configure - Get the status of THP
|
|
ansible.builtin.command: cat /sys/kernel/mm/transparent_hugepage/enabled
|
|
diff -up redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2382421.yml.me redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2382421.yml
|
|
--- redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2382421.yml.me 2025-02-04 10:24:25.595832908 +0100
|
|
+++ redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2382421.yml 2025-02-04 10:24:48.064360920 +0100
|
|
@@ -72,6 +72,7 @@
|
|
- name: Construct the command for getting all current parameters of file '{{ __sap_hana_preconfigure_etc_sysctl_saphana_conf }}'
|
|
ansible.builtin.command: awk 'BEGIN{FS="="; printf ("sysctl ")}{printf ("%s ", $1)}' "{{ __sap_hana_preconfigure_etc_sysctl_saphana_conf }}"
|
|
register: __sap_hana_preconfigure_register_saphana_conf_sysctl_command
|
|
+ check_mode: false
|
|
changed_when: false
|
|
|
|
- name: Get all currently active values of the parameters of file '{{ __sap_hana_preconfigure_etc_sysctl_saphana_conf }}'
|
|
diff -up redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2055470.yml.me redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2055470.yml
|
|
--- redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2055470.yml.me 2025-02-05 09:51:04.058022376 +0100
|
|
+++ redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/tasks/sapnote/2055470.yml 2025-02-05 09:53:15.784038257 +0100
|
|
@@ -64,16 +64,19 @@
|
|
# Note: The sole purpose of the following two tasks is to collect the current value(s) of the kernel parameters
|
|
# in '/etc/sysctl.d/ibm_largesend.conf' so that the "Reload kernel parameters from file ..." task
|
|
# can correctly report its 'changed' state. See also https://github.com/sap-linuxlab/community.sap_install/issues/752 .
|
|
+
|
|
- name: Construct the command for getting all current parameters of file '/etc/sysctl.d/ibm_largesend.conf'
|
|
ansible.builtin.command: awk 'BEGIN{FS="="; printf ("sysctl ")}{printf ("%s ", $1)}' /etc/sysctl.d/ibm_largesend.conf
|
|
register: __sap_hana_preconfigure_register_ibm_largesend_sysctl_command
|
|
changed_when: false
|
|
+ when: not ansible_check_mode
|
|
|
|
# Reason for noqa: The command module tries to run the complete string as a single command
|
|
- name: Get all currently active values of the parameters of file '/etc/sysctl.d/ibm_largesend.conf' # noqa command-instead-of-shell
|
|
ansible.builtin.shell: "{{ __sap_hana_preconfigure_register_ibm_largesend_sysctl_command.stdout }}"
|
|
register: __sap_hana_preconfigure_register_ibm_largesend_sysctl_p_output_old
|
|
changed_when: false
|
|
+ when: not ansible_check_mode
|
|
|
|
- name: Reload kernel parameters from file '/etc/sysctl.d/ibm_largesend.conf'
|
|
ansible.builtin.command: sysctl -p /etc/sysctl.d/ibm_largesend.conf
|
|
diff -up redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/vars/RedHat_10.yml.me redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/vars/RedHat_10.yml
|
|
--- redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/vars/RedHat_10.yml.me 2025-02-05 11:35:35.090169430 +0100
|
|
+++ redhat.sap_install-1.5.2/roles/sap_hana_preconfigure/vars/RedHat_10.yml 2025-02-05 11:35:42.364338354 +0100
|
|
@@ -99,7 +99,7 @@ __sap_hana_preconfigure_packages_min_ins
|
|
__sap_hana_preconfigure_ibm_power_repo_url: 'https://public.dhe.ibm.com/software/server/POWER/Linux/yum/download/ibm-power-repo-latest.noarch.rpm'
|
|
|
|
__sap_hana_preconfigure_required_ppc64le:
|
|
- - ibm-power-managed-rhel9
|
|
+ - ibm-power-managed-rhel10
|
|
|
|
# Network related kernel parameters as set in SAP Note 2382421:
|
|
__sap_hana_preconfigure_kernel_parameters_default:
|