Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

fixing possible umask issue #29

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 2 additions & 1 deletion tasks/hana_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
unarchive:
src: "{{ sap_hana_deployment_zip_path }}/{{ sap_hana_deployment_zip_file_name }}"
dest: "{{ sap_hana_deployment_zip_path }}"
mode: '0755'
register: sap_hana_deployment_register_extractzip

- name: Setting fact for HANA installer path
Expand Down Expand Up @@ -53,7 +54,7 @@
register: cftemplate

- name: Install SAP HANA
command: "./hdblcm {{ sap_hana_deployment_hdblcm_extraargs }} --configfile={{ tmpdir.path }}/configfile.cfg -b"
shell: "umask 022; ./hdblcm {{ sap_hana_deployment_hdblcm_extraargs }} --configfile={{ tmpdir.path }}/configfile.cfg -b"
register: installhana
args:
chdir: "{{ sap_hana_installdir }}"
Expand Down