Skip to content

Commit

Permalink
Merge pull request #24 from sap-linuxlab/dev
Browse files Browse the repository at this point in the history
collection: merge dev to main for release 0.9.1 fix
  • Loading branch information
sean-freeman committed Jan 10, 2024
2 parents 3405579 + 5ff9992 commit e247f47
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
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

0 comments on commit e247f47

Please sign in to comment.