import rhel-system-roles-sap-1.1.1-1.el8_1
This commit is contained in:
parent
824e521b05
commit
df776b49f0
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1 @@
|
|||||||
SOURCES/sap-hana-preconfigure-2019-09-12.tar.gz
|
SOURCES/rhel-system-roles-sap-2019-09-30_18-11-12.tar.gz
|
||||||
SOURCES/sap-netweaver-preconfigure-2019-09-12.tar.gz
|
|
||||||
SOURCES/sap-preconfigure-2019-09-12.tar.gz
|
|
||||||
|
@ -1,3 +1 @@
|
|||||||
b98aa9ff66c6897194f83aa932ad9e06eda9c018 SOURCES/sap-hana-preconfigure-2019-09-12.tar.gz
|
71a7dd706b059d82346b9ec876bbacc946974d70 SOURCES/rhel-system-roles-sap-2019-09-30_18-11-12.tar.gz
|
||||||
c022a6228759329f57a2bdf7e155a1c27421b1f1 SOURCES/sap-netweaver-preconfigure-2019-09-12.tar.gz
|
|
||||||
64e79c3241be7fb52ca3b1d17a899e0d0d49f9af SOURCES/sap-preconfigure-2019-09-12.tar.gz
|
|
||||||
|
14
SOURCES/rhel-system-roles-sap-0.7.2-rhel-7.8.patch
Normal file
14
SOURCES/rhel-system-roles-sap-0.7.2-rhel-7.8.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
diff -up rhel-system-roles-sap-0.7.2/sap-hana-preconfigure/vars/RedHat_7.yml.me rhel-system-roles-sap-0.7.2/sap-hana-preconfigure/vars/RedHat_7.yml
|
||||||
|
--- rhel-system-roles-sap-0.7.2/sap-hana-preconfigure/vars/RedHat_7.yml.me 2019-10-15 16:26:41.311466458 +0200
|
||||||
|
+++ rhel-system-roles-sap-0.7.2/sap-hana-preconfigure/vars/RedHat_7.yml 2019-10-15 18:48:35.470383628 +0200
|
||||||
|
@@ -71,6 +71,10 @@ sap_hana_preconfigure_min_packages_7.6:
|
||||||
|
sap_hana_preconfigure_min_packages_7.7:
|
||||||
|
- [ 'kernel' , '3.10.0-1062.1.1.el7' ]
|
||||||
|
|
||||||
|
+## Double check with SAP NOTE 2235581
|
||||||
|
+sap_hana_preconfigure_min_packages_7.8:
|
||||||
|
+ - [ 'kernel' , '3.10.0-1101.el7' ]
|
||||||
|
+
|
||||||
|
sap_hana_preconfigure_min_pkgs: "{{ lookup('vars','sap_hana_preconfigure_min_packages_' + ansible_distribution_version|string ) }}"
|
||||||
|
|
||||||
|
sap_hana_preconfigure_packages:
|
@ -0,0 +1,32 @@
|
|||||||
|
commit 38a18c2890aa80c4562d002cc557945bdf9c5e7e
|
||||||
|
Author: Bernd Finger <bfinger@redhat.com>
|
||||||
|
Date: Tue Oct 1 18:00:59 2019 +0200
|
||||||
|
|
||||||
|
added "LC_ALL=C " before commands for which the outputs are to be evaluated
|
||||||
|
|
||||||
|
diff --git a/tasks/RedHat/generic/configure-cpu-governor-for-performance.yml b/tasks/RedHat/generic/configure-cpu-governor-for-performance.yml
|
||||||
|
index 3cef670..274c7ea 100644
|
||||||
|
--- a/tasks/RedHat/generic/configure-cpu-governor-for-performance.yml
|
||||||
|
+++ b/tasks/RedHat/generic/configure-cpu-governor-for-performance.yml
|
||||||
|
@@ -7,7 +7,7 @@
|
||||||
|
# in included tuned profile throughput-performance
|
||||||
|
- block:
|
||||||
|
- name: Check if system is able to set CPU Governor for performance
|
||||||
|
- command: bash -lc "cpupower frequency-info -g | awk '/available cpufreq governors/{print $(NF-1), $NF}'"
|
||||||
|
+ command: bash -lc "LC_ALL=C cpupower frequency-info -g | awk '/available cpufreq governors/{print $(NF-1), $NF}'"
|
||||||
|
check_mode: no
|
||||||
|
register: command_check_result
|
||||||
|
ignore_errors: true
|
||||||
|
diff --git a/tasks/RedHat/generic/configure-epb.yml b/tasks/RedHat/generic/configure-epb.yml
|
||||||
|
index adf5891..71d8b91 100644
|
||||||
|
--- a/tasks/RedHat/generic/configure-epb.yml
|
||||||
|
+++ b/tasks/RedHat/generic/configure-epb.yml
|
||||||
|
@@ -7,7 +7,7 @@
|
||||||
|
# in included tuned profile throughput-performance
|
||||||
|
- block:
|
||||||
|
- name: Check if system supports Intel's performance bias setting
|
||||||
|
- command: bash -lc "cpupower info | head -1 | awk '{print $2, $3, $4}'"
|
||||||
|
+ command: bash -lc "LC_ALL=C cpupower info | head -1 | awk '{print $2, $3, $4}'"
|
||||||
|
check_mode: no
|
||||||
|
register: command_check_result
|
||||||
|
ignore_errors: true
|
@ -0,0 +1,115 @@
|
|||||||
|
commit b10e9f539263e1a2fd9222d6c52c55c7cb337130
|
||||||
|
Author: Bernd Finger <bfinger@redhat.com>
|
||||||
|
Date: Wed Oct 2 22:54:14 2019 +0200
|
||||||
|
|
||||||
|
- convert variables to bool when comparing in when: statements
|
||||||
|
- always use ansible_hostname + ansible_domain instead of ansible_fqdn
|
||||||
|
|
||||||
|
diff --git a/tasks/sapnote/2002167/03-setting-the-hostname.yml b/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
index f4e57f8..21de429 100644
|
||||||
|
--- a/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
+++ b/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
@@ -19,40 +19,40 @@
|
||||||
|
failed_when: change_hostname.rc >= 2
|
||||||
|
|
||||||
|
- name: Check if ipv4 address, FQDN, and hostname are in /etc/hosts
|
||||||
|
- command: bash -lc "awk 'BEGIN{a=0}/{{ ansible_default_ipv4.address }}/&&/{{ ansible_fqdn }}/&&/{{ ansible_hostname }}/{a++}END{print a}' /etc/hosts"
|
||||||
|
+ command: bash -lc "awk 'BEGIN{a=0}/{{ ansible_default_ipv4.address }}/&&/{{ ansible_hostname }}.{{ ansible_domain }}/&&/{{ ansible_hostname }}/{a++}END{print a}' /etc/hosts"
|
||||||
|
register: command_result
|
||||||
|
changed_when: no
|
||||||
|
- debug:
|
||||||
|
var: command_result.stdout_lines, command_result.stderr_lines
|
||||||
|
when:
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- debug:
|
||||||
|
msg:
|
||||||
|
- "Expected:"
|
||||||
|
- - "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }}"
|
||||||
|
+ - "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }}"
|
||||||
|
when:
|
||||||
|
- command_result.stdout != "1"
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- fail:
|
||||||
|
msg:
|
||||||
|
- "Server's ipv4 address, FQDN, or hostname are not in /etc/hosts!"
|
||||||
|
when:
|
||||||
|
- command_result.stdout != "1"
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- name: Make sure server's IP address is in /etc/hosts
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/hosts
|
||||||
|
regexp: '^{{ ansible_default_ipv4.address }}'
|
||||||
|
insertbefore: '^127.0.0.1'
|
||||||
|
-# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
- line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }} "
|
||||||
|
+# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }}"
|
||||||
|
+ line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }}"
|
||||||
|
state: present
|
||||||
|
when:
|
||||||
|
- - sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
- debug:
|
||||||
|
- msg: "System {{ ansible_hostname }}, {{ ansible_fqdn }} has ipv4 address {{ ansible_default_ipv4.address }}"
|
||||||
|
+ msg: "System {{ ansible_hostname }}, {{ ansible_hostname }}.{{ ansible_domain }} has ipv4 address {{ ansible_default_ipv4.address }}"
|
||||||
|
|
||||||
|
...
|
||||||
|
diff --git a/tasks/sapnote/2772999/03-configure-hostname.yml b/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
index f89ca68..3de61a5 100644
|
||||||
|
--- a/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
+++ b/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
@@ -19,40 +19,40 @@
|
||||||
|
failed_when: change_hostname.rc >= 2
|
||||||
|
|
||||||
|
- name: Check if ipv4 address, FQDN, and hostname are in /etc/hosts
|
||||||
|
- command: bash -lc "awk 'BEGIN{a=0}/{{ ansible_default_ipv4.address }}/&&/{{ ansible_fqdn }}/&&/{{ ansible_hostname }}/{a++}END{print a}' /etc/hosts"
|
||||||
|
+ command: bash -lc "awk 'BEGIN{a=0}/{{ ansible_default_ipv4.address }}/&&/{{ ansible_hostname }}.{{ ansible_domain }}/&&/{{ ansible_hostname }}/{a++}END{print a}' /etc/hosts"
|
||||||
|
register: command_result
|
||||||
|
changed_when: no
|
||||||
|
- debug:
|
||||||
|
var: command_result.stdout_lines, command_result.stderr_lines
|
||||||
|
when:
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- debug:
|
||||||
|
msg:
|
||||||
|
- "Expected:"
|
||||||
|
- - "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }}"
|
||||||
|
+ - "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }}"
|
||||||
|
when:
|
||||||
|
- command_result.stdout != "1"
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- fail:
|
||||||
|
msg:
|
||||||
|
- "Server's ipv4 address, FQDN, or hostname are not in /etc/hosts!"
|
||||||
|
when:
|
||||||
|
- command_result.stdout != "1"
|
||||||
|
- - not sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - not sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
|
||||||
|
- name: Make sure server's IP address is in /etc/hosts
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/hosts
|
||||||
|
regexp: '^{{ ansible_default_ipv4.address }}'
|
||||||
|
insertbefore: '^127.0.0.1'
|
||||||
|
-# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
- line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }} "
|
||||||
|
+# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }}"
|
||||||
|
+ line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }}"
|
||||||
|
state: present
|
||||||
|
when:
|
||||||
|
- - sap_preconfigure_modify_etc_hosts
|
||||||
|
+ - sap_preconfigure_modify_etc_hosts | bool
|
||||||
|
- debug:
|
||||||
|
- msg: "System {{ ansible_hostname }}, {{ ansible_fqdn }} has ipv4 address {{ ansible_default_ipv4.address }}"
|
||||||
|
+ msg: "System {{ ansible_hostname }}, {{ ansible_hostname }}.{{ ansible_domain }} has ipv4 address {{ ansible_default_ipv4.address }}"
|
||||||
|
|
||||||
|
...
|
@ -0,0 +1,34 @@
|
|||||||
|
commit baa3b58a0d2a60bb0e222b3dac5190c8ea171cf3
|
||||||
|
Author: Bernd Finger <bfinger@redhat.com>
|
||||||
|
Date: Tue Oct 1 18:40:03 2019 +0200
|
||||||
|
|
||||||
|
use {{ ansible_hostname }}.{{ ansible_domain }} instead of {{ ansible_fqdn }}
|
||||||
|
|
||||||
|
diff --git a/tasks/sapnote/2002167/03-setting-the-hostname.yml b/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
index e95fb74..f4e57f8 100644
|
||||||
|
--- a/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
+++ b/tasks/sapnote/2002167/03-setting-the-hostname.yml
|
||||||
|
@@ -47,7 +47,8 @@
|
||||||
|
path: /etc/hosts
|
||||||
|
regexp: '^{{ ansible_default_ipv4.address }}'
|
||||||
|
insertbefore: '^127.0.0.1'
|
||||||
|
- line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
+# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
+ line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }} "
|
||||||
|
state: present
|
||||||
|
when:
|
||||||
|
- sap_preconfigure_modify_etc_hosts
|
||||||
|
diff --git a/tasks/sapnote/2772999/03-configure-hostname.yml b/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
index 258c9f5..f89ca68 100644
|
||||||
|
--- a/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
+++ b/tasks/sapnote/2772999/03-configure-hostname.yml
|
||||||
|
@@ -47,7 +47,8 @@
|
||||||
|
path: /etc/hosts
|
||||||
|
regexp: '^{{ ansible_default_ipv4.address }}'
|
||||||
|
insertbefore: '^127.0.0.1'
|
||||||
|
- line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
+# line: "{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }} "
|
||||||
|
+ line: "{{ ansible_default_ipv4.address }} {{ ansible_hostname }}.{{ ansible_domain }} {{ ansible_hostname }} "
|
||||||
|
state: present
|
||||||
|
when:
|
||||||
|
- sap_preconfigure_modify_etc_hosts
|
@ -1,23 +1,44 @@
|
|||||||
|
# avoiding version conflict, set version 1.1.1 for rhel8
|
||||||
|
%define upstream_vesion 2019-09-30_18-11-12
|
||||||
|
|
||||||
Name: rhel-system-roles-sap
|
Name: rhel-system-roles-sap
|
||||||
Summary: System Role prepares a RHEL system for running SAP software for SAP HANA
|
Summary: System Role prepares a RHEL system for running SAP software for SAP HANA
|
||||||
Version: 1.1
|
Version: 1.1.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
Url: https://github.com/berndfinger
|
Url: https://github.com/berndfinger
|
||||||
Source0: https://than.fedorapeople.org/rhel/sap-preconfigure-2019-09-12.tar.gz
|
Source0: https://than.fedorapeople.org/rhel/%{name}-%{upstream_vesion}.tar.gz
|
||||||
Source1: https://than.fedorapeople.org/rhel/sap-hana-preconfigure-2019-09-12.tar.gz
|
|
||||||
Source2: https://than.fedorapeople.org/rhel/sap-netweaver-preconfigure-2019-09-12.tar.gz
|
# set sap_hana_preconfigure_min_packages_7.8 for rhel-7.8
|
||||||
|
Patch0: rhel-system-roles-sap-0.7.2-rhel-7.8.patch
|
||||||
|
|
||||||
|
# use {{ ansible_hostname }}.{{ ansible_domain }} instead of {{ ansible_fqdn }}
|
||||||
|
Patch1: sap-preconfig-baa3b58a0d2a60bb0e222b3dac5190c8ea171cf3.patch
|
||||||
|
|
||||||
|
# convert variables to bool when comparing in when: statements
|
||||||
|
# always use ansible_hostname + ansible_domain instead of ansible_fqdn
|
||||||
|
Patch2: sap-preconfig-b10e9f539263e1a2fd9222d6c52c55c7cb337130.patch
|
||||||
|
|
||||||
|
# set LC_ALL=C
|
||||||
|
Patch3: sap-hana-preconfigure-38a18c2890aa80c4562d002cc557945bdf9c5e7e.patch
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Requires: rhel-system-roles
|
|
||||||
#Requires: tuned-profiles-sap
|
|
||||||
Requires: uuidd
|
Requires: uuidd
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Collection of Ansible roles which configures a RHEL 8 system according
|
Collection of Ansible roles which configures a RHEL system according
|
||||||
to applicable SAP notes so that any SAP software can be installed.
|
to applicable SAP notes so that any SAP software can be installed.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -T -c -n %{name}-%{version} -a 0 -a 1 -a 2
|
%setup -q -T -c -n %{name}-%{version} -a 0
|
||||||
|
%patch0 -p1
|
||||||
|
pushd sap-preconfigure
|
||||||
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
popd
|
||||||
|
pushd sap-hana-preconfigure
|
||||||
|
%patch3 -p1
|
||||||
|
popd
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
@ -27,24 +48,32 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/ansible/roles \
|
|||||||
$RPM_BUILD_ROOT%{_pkgdocdir}/sap-preconfigure \
|
$RPM_BUILD_ROOT%{_pkgdocdir}/sap-preconfigure \
|
||||||
$RPM_BUILD_ROOT%{_pkgdocdir}/sap-netweaver-preconfigure
|
$RPM_BUILD_ROOT%{_pkgdocdir}/sap-netweaver-preconfigure
|
||||||
|
|
||||||
|
# drop zero file
|
||||||
|
rm -f */.gitignore sap-hana-preconfigure/tasks/RedHat_6/recommendations.yml
|
||||||
|
|
||||||
cp -pR sap-hana-preconfigure sap-preconfigure sap-netweaver-preconfigure $RPM_BUILD_ROOT%{_datadir}/ansible/roles/
|
cp -pR sap-hana-preconfigure sap-preconfigure sap-netweaver-preconfigure $RPM_BUILD_ROOT%{_datadir}/ansible/roles/
|
||||||
cp -p sap-hana-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-hana-preconfigure/
|
cp -p sap-hana-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-hana-preconfigure/
|
||||||
cp -p sap-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-preconfigure/
|
cp -p sap-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-preconfigure/
|
||||||
cp -p sap-netweaver-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-netweaver-preconfigure/
|
cp -p sap-netweaver-preconfigure/{README.md,LICENSE} $RPM_BUILD_ROOT%{_pkgdocdir}/sap-netweaver-preconfigure/
|
||||||
|
|
||||||
# drop zero file
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_datadir}/ansible/roles/sap-hana-preconfigure/tasks/RedHat_6/recommendations.yml
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{_pkgdocdir}
|
%dir %{_pkgdocdir}
|
||||||
%dir %{_pkgdocdir}/sap-preconfigure
|
%dir %{_pkgdocdir}/sap-preconfigure
|
||||||
%dir %{_pkgdocdir}/sap-hana-preconfigure
|
%dir %{_pkgdocdir}/sap-hana-preconfigure
|
||||||
%dir %{_pkgdocdir}/sap-netweaver-preconfigure
|
%dir %{_pkgdocdir}/sap-netweaver-preconfigure
|
||||||
|
%dir %{_datadir}/ansible
|
||||||
|
%dir %{_datadir}/ansible/roles
|
||||||
%doc %{_pkgdocdir}/*/README.md
|
%doc %{_pkgdocdir}/*/README.md
|
||||||
%license %{_pkgdocdir}/*/LICENSE
|
%license %{_pkgdocdir}/*/LICENSE
|
||||||
%{_datadir}/ansible/roles/*
|
%{_datadir}/ansible/roles/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 21 2019 Than Ngo <than@redhat.com> - 1.1.1-1
|
||||||
|
- rebase to 1.1.1
|
||||||
|
- always use ansible_hostname + ansible_domain instead of ansible_fqdn
|
||||||
|
- use {{ ansible_hostname }}.{{ ansible_domain }} instead of {{ ansible_fqdn }}
|
||||||
|
- added LC_ALL=C before commands for which the outputs are to be evaluated
|
||||||
|
|
||||||
* Thu Sep 12 2019 Than Ngo <than@redhat.com> - 1.1-1
|
* Thu Sep 12 2019 Than Ngo <than@redhat.com> - 1.1-1
|
||||||
- rebase to 1.1
|
- rebase to 1.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user