Skip to content

Commit e247f47

Browse files
authored
Merge pull request #24 from sap-linuxlab/dev
collection: merge dev to main for release 0.9.1 fix
2 parents 3405579 + 5ff9992 commit e247f47

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

galaxy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace: community
1010
name: sap_operations
1111

1212
# The version of the collection. Must be compatible with semantic versioning
13-
version: 1.0.0
13+
version: 0.9.1
1414

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

3333
# The path to the license file for the collection. This path is relative to the root of the collection. This key is
3434
# mutually exclusive with 'license'

roles/sap_rfc/tasks/setup/nwrfcsdk_init.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@
9090
# src: "{{ __sap_rfc_nwrfc_lib_patch.files[0].path }}"
9191
# dest: "{{ __sap_rfc_nwrfc_lib.files[0].path }}"
9292

93-
# - name: Create ld.so.conf configuration file with path to compiled shared library (libsapnwrfc.so)
94-
# ansible.builtin.copy:
95-
# dest: /etc/ld.so.conf.d/nwrfcsdk.conf
96-
# mode: '0444'
97-
# content: |
98-
# # include nwrfcsdk
99-
# {{ __sap_rfc_nwrfc_lib.files[0].path | dirname }}
100-
# # include /usr/sap (e.g. libstdc++.so.6)
101-
# /usr/sap/lib
93+
- name: Create ld.so.conf configuration file with path to compiled shared library (libsapnwrfc.so)
94+
ansible.builtin.copy:
95+
dest: /etc/ld.so.conf.d/nwrfcsdk.conf
96+
mode: '0444'
97+
content: |
98+
# include nwrfcsdk
99+
{{ __sap_rfc_nwrfc_lib.files[0].path | dirname }}
100+
# include /usr/sap (e.g. libstdc++.so.6)
101+
/usr/sap/lib
102102
103103
- name: Reload system-wide library paths (ldconfig)
104104
ansible.builtin.shell: ldconfig

roles/sap_rfc/tasks/setup/python_init.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- python39-pip
99
- python39-wheel
1010
- python39-devel # Required for PyRFC compile with GCC
11+
- python3-virtualenv # Use OS Package to allow non-root users to create Python virtual environment
1112
- gcc
1213
- glibc
1314
- gcc-c++

0 commit comments

Comments
 (0)