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

collection: merge dev to main for release 0.9.1 fix #24

Merged
merged 2 commits into from
Jan 10, 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
4 changes: 2 additions & 2 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace: community
name: sap_operations

# The version of the collection. Must be compatible with semantic versioning
version: 1.0.0
version: 0.9.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand All @@ -28,7 +28,7 @@ description: Collection of Ansible Modules and Ansible Roles for SAP system oper
# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
license:
- Apache-2.0
- Apache-2.0

# The path to the license file for the collection. This path is relative to the root of the collection. This key is
# mutually exclusive with 'license'
Expand Down
18 changes: 9 additions & 9 deletions roles/sap_rfc/tasks/setup/nwrfcsdk_init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@
# src: "{{ __sap_rfc_nwrfc_lib_patch.files[0].path }}"
# dest: "{{ __sap_rfc_nwrfc_lib.files[0].path }}"

# - name: Create ld.so.conf configuration file with path to compiled shared library (libsapnwrfc.so)
# ansible.builtin.copy:
# dest: /etc/ld.so.conf.d/nwrfcsdk.conf
# mode: '0444'
# content: |
# # include nwrfcsdk
# {{ __sap_rfc_nwrfc_lib.files[0].path | dirname }}
# # include /usr/sap (e.g. libstdc++.so.6)
# /usr/sap/lib
- name: Create ld.so.conf configuration file with path to compiled shared library (libsapnwrfc.so)
ansible.builtin.copy:
dest: /etc/ld.so.conf.d/nwrfcsdk.conf
mode: '0444'
content: |
# include nwrfcsdk
{{ __sap_rfc_nwrfc_lib.files[0].path | dirname }}
# include /usr/sap (e.g. libstdc++.so.6)
/usr/sap/lib

- name: Reload system-wide library paths (ldconfig)
ansible.builtin.shell: ldconfig
Expand Down
1 change: 1 addition & 0 deletions roles/sap_rfc/tasks/setup/python_init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- python39-pip
- python39-wheel
- python39-devel # Required for PyRFC compile with GCC
- python3-virtualenv # Use OS Package to allow non-root users to create Python virtual environment
- gcc
- glibc
- gcc-c++
Expand Down
Loading