File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed
roles/sap_rfc/tasks/setup Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace: community
10
10
name : sap_operations
11
11
12
12
# The version of the collection. Must be compatible with semantic versioning
13
- version : 1.0.0
13
+ version : 0.9.1
14
14
15
15
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
16
16
readme : README.md
@@ -28,7 +28,7 @@ description: Collection of Ansible Modules and Ansible Roles for SAP system oper
28
28
# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
29
29
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
30
30
license :
31
- - Apache-2.0
31
+ - Apache-2.0
32
32
33
33
# The path to the license file for the collection. This path is relative to the root of the collection. This key is
34
34
# mutually exclusive with 'license'
Original file line number Diff line number Diff line change 90
90
# src: "{{ __sap_rfc_nwrfc_lib_patch.files[0].path }}"
91
91
# dest: "{{ __sap_rfc_nwrfc_lib.files[0].path }}"
92
92
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
102
102
103
103
- name : Reload system-wide library paths (ldconfig)
104
104
ansible.builtin.shell : ldconfig
Original file line number Diff line number Diff line change 8
8
- python39-pip
9
9
- python39-wheel
10
10
- python39-devel # Required for PyRFC compile with GCC
11
+ - python3-virtualenv # Use OS Package to allow non-root users to create Python virtual environment
11
12
- gcc
12
13
- glibc
13
14
- gcc-c++
You can’t perform that action at this time.
0 commit comments