From 1faea9a6c75f33109e8f66b57b432fdad57b3f46 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 26 Jun 2024 08:24:57 +0200 Subject: Adding upstream version 24.6.1. Signed-off-by: Daniel Baumann --- examples/collection/CHANGELOG.rst | 0 examples/collection/galaxy.yml | 17 --------- examples/collection/meta/runtime.yml | 0 examples/collection/plugins/modules/alpha.py | 44 ------------------------ examples/collection/plugins/modules/deep/beta.py | 44 ------------------------ 5 files changed, 105 deletions(-) delete mode 100644 examples/collection/CHANGELOG.rst delete mode 100644 examples/collection/galaxy.yml delete mode 100644 examples/collection/meta/runtime.yml delete mode 100644 examples/collection/plugins/modules/alpha.py delete mode 100644 examples/collection/plugins/modules/deep/beta.py (limited to 'examples/collection') diff --git a/examples/collection/CHANGELOG.rst b/examples/collection/CHANGELOG.rst deleted file mode 100644 index e69de29..0000000 diff --git a/examples/collection/galaxy.yml b/examples/collection/galaxy.yml deleted file mode 100644 index d21efb2..0000000 --- a/examples/collection/galaxy.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: foo -namespace: bar -version: 0.0.0 # noqa: galaxy[version-incorrect] -authors: - - John -readme: ../README.md -description: "..." -dependencies: - other_namespace.collection1: ">=1.0.0" - other_namespace.collection2: ">=2.0.0,<3.0.0" - anderson55.my_collection: "*" # note: "*" selects the highest version available -license: - - GPL # <-- invalid license value based on galaxy schema, a value like GPL-3.0-or-later would work - - Apache-2.0 -repository: some-url -tags: [networking, test_tag] diff --git a/examples/collection/meta/runtime.yml b/examples/collection/meta/runtime.yml deleted file mode 100644 index e69de29..0000000 diff --git a/examples/collection/plugins/modules/alpha.py b/examples/collection/plugins/modules/alpha.py deleted file mode 100644 index c806cad..0000000 --- a/examples/collection/plugins/modules/alpha.py +++ /dev/null @@ -1,44 +0,0 @@ -"""An ansible test module.""" - - -DOCUMENTATION = """ -module: mod_1 -author: -- test -short_description: This is a test module -description: -- This is a test module -version_added: 1.0.0 -options: - foo: - description: - - Dummy option I(foo) - type: str - bar: - description: - - Dummy option I(bar) - default: candidate - type: str - choices: - - candidate - - running - aliases: - - bam -notes: -- This is a dummy module -""" - -EXAMPLES = """ -- name: test task-1 - company_name.coll_1.mod_1: - foo: some value - bar: candidate -""" - -RETURN = """ -baz: - description: test return 1 - returned: success - type: list - sample: ['a','b'] -""" diff --git a/examples/collection/plugins/modules/deep/beta.py b/examples/collection/plugins/modules/deep/beta.py deleted file mode 100644 index ffd9ff8..0000000 --- a/examples/collection/plugins/modules/deep/beta.py +++ /dev/null @@ -1,44 +0,0 @@ -"""An ansible test module.""" - - -DOCUMENTATION = """ -module: mod_2 -author: -- test -short_description: This is a test module -description: -- This is a test module -version_added: 1.0.0 -options: - foo: - description: - - Dummy option I(foo) - type: str - bar: - description: - - Dummy option I(bar) - default: candidate - type: str - choices: - - candidate - - running - aliases: - - bam -notes: -- This is a dummy module -""" - -EXAMPLES = """ -- name: test task-1 - company_name.coll_1.mod_2: - foo: some value - bar: candidate -""" - -RETURN = """ -baz: - description: test return 1 - returned: success - type: list - sample: ['a','b'] -""" -- cgit v1.2.3