Skip to content

Commit 3aa663f

Browse files
committed
fix: add dependencies references
1 parent f818c7c commit 3aa663f

File tree

5 files changed

+37
-6
lines changed

5 files changed

+37
-6
lines changed

galaxy.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
2+
13
### REQUIRED
24
# The namespace of the collection. This can be a company/brand/organization or product namespace under which all
35
# content lives. May only contain alphanumeric lowercase characters and underscores. Namespaces cannot start with
@@ -40,19 +42,20 @@ tags: []
4042
# collection label 'namespace.name'. The value is a version range
4143
# L(specifiers,https://python-semanticversion.readthedocs.io/en/latest/#requirement-specification). Multiple version
4244
# range specifiers can be set and are separated by ','
43-
dependencies: {}
45+
dependencies:
46+
community.sap_libs: '*'
4447

4548
# The URL of the originating SCM repository
46-
repository: http://example.com/repository
49+
repository: https://github.com/sap-linuxlab/community.sap_operations
4750

4851
# The URL to any online docs
49-
documentation: http://docs.example.com
52+
documentation: https://github.com/sap-linuxlab/sap-linuxlab.github.io/blob/master/README.md
5053

5154
# The URL to the homepage of the collection/project
52-
homepage: http://example.com
55+
homepage: https://sap-linuxlab.github.io
5356

5457
# The URL to the collection issue tracker
55-
issues: http://example.com/issue/tracker
58+
issues: https://github.com/sap-linuxlab/community.sap_operations/issues
5659

5760
# A list of file glob-like patterns used to filter any files or directories that should not be included in the build
5861
# artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This

roles/sap_rfc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sap_rfc Ansible Role
22

3-
The sap_rfc Ansible Role executes SAP RFCs, and performs setup as necessary ([`PyRFC`](https://github.com/SAP/PyRFC) open source by SAP, and [`SAP NWRFC SDK`](https://support.sap.com/en/product/connectors/nwrfcsdk.html))
3+
The sap_rfc Ansible Role executes an SAP Remote Function Call (RFC), and performs setup as necessary ([`PyRFC`](https://github.com/SAP/PyRFC) open source by SAP, and [`SAP NWRFC SDK`](https://support.sap.com/en/product/connectors/nwrfcsdk.html)).
44

55
## Ansible Role Overview
66

roles/sap_rfc/meta/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
galaxy_info:
3+
namespace: community
4+
author: IBM Lab for SAP Solutions, Red Hat for SAP Community of Practice, Sean Freeman
5+
description: Execute SAP Remote Function Call (RFC)
6+
license: Apache-2.0
7+
min_ansible_version: 2.9
8+
platforms:
9+
- name: EL
10+
versions: [ 7, 8, 9 ]
11+
- name: SLES
12+
versions: [ 15SP3 ]
13+
galaxy_tags: [ 'sap', 'swpm', 'sapinst', 'rhel', 'redhat', 'sles', 'suse' ]
14+
dependencies: []
15+
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
16+
collections:
17+
- community.sap_libs
18+
- community.sap_launchpad

roles/sap_rfc/meta/runtime.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
requires_ansible: '>=2.9.10'

roles/sap_rfc/requirements.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
collections:
3+
- name: https://github.com/sap-linuxlab/community.sap_libs
4+
type: git
5+
version: main
6+
- name: https://github.com/sap-linuxlab/community.sap_launchpad
7+
type: git
8+
version: main

0 commit comments

Comments
 (0)