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_*_preconfigure: disable and stop sapconf when saptune run #640

Merged
merged 1 commit into from
Feb 8, 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
6 changes: 6 additions & 0 deletions roles/sap_hana_preconfigure/tasks/SLES/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
- name: Takover saptune and enable
when: __sap_hana_preconfigure_run_saptune
block:
- name: Ensure sapconf is stopped and disabled
ansible.builtin.systemd:
name: sapconf
state: stopped
enabled: false

- name: Make sure that sapconf and tuned are stopped and disabled
ansible.builtin.command: "saptune service takeover"
register: __sap_saptune_takeover
Expand Down
6 changes: 6 additions & 0 deletions roles/sap_netweaver_preconfigure/tasks/SLES/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
- name: Takover saptune and enable
when: __sap_netweaver_preconfigure_run_saptune
block:
- name: Ensure sapconf is stopped and disabled
ansible.builtin.systemd:
name: sapconf
state: stopped
enabled: false

- name: Make sure that sapconf and tuned are stopped and disabled
ansible.builtin.command: "saptune service takeover"
register: __sap_saptune_takeover
Expand Down
Loading