From e5817552d2232c047849e13361ff53ed3d6e6fe9 Mon Sep 17 00:00:00 2001 From: "Stuart B. Wilkins" Date: Sun, 9 Feb 2025 14:06:54 -0500 Subject: [PATCH] Fix for linter --- .github/workflows/superlinter.yml | 2 +- galaxy.yml | 6 ++++-- plugins/README.md | 31 ------------------------------- 3 files changed, 5 insertions(+), 34 deletions(-) delete mode 100644 plugins/README.md diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml index a08cc48..bb6e673 100644 --- a/.github/workflows/superlinter.yml +++ b/.github/workflows/superlinter.yml @@ -7,7 +7,7 @@ on: # yamllint disable-line rule:truthy pull_request: branches: [main] -permissions: {} +# permissions: {} jobs: build: diff --git a/galaxy.yml b/galaxy.yml index 5409fbb..6eabad8 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,3 +1,5 @@ +--- + namespace: nsls2 name: general version: 1.0.0 @@ -9,9 +11,9 @@ license: - 'BSD-3-Clause' license_file: 'LICENSE' tags: [networking] -dependencies: {} +# dependencies: {} repository: http://github.com/nsls2/nsls2.general documentation: http://docs.nsls2.bnl.gov homepage: http://www.bnl.gov/nsls2 issues: https://github.com/NSLS2/nsls2.general/issues -build_ignore: [] +# build_ignore: [] diff --git a/plugins/README.md b/plugins/README.md deleted file mode 100644 index 6260634..0000000 --- a/plugins/README.md +++ /dev/null @@ -1,31 +0,0 @@ -# Collections Plugins Directory - -This directory can be used to ship various plugins inside an Ansible collection. Each plugin is placed in a folder that -is named after the type of plugin it is in. It can also include the `module_utils` and `modules` directory that -would contain module utils and modules respectively. - -Here is an example directory of the majority of plugins currently supported by Ansible: - -``` -└── plugins - ├── action - ├── become - ├── cache - ├── callback - ├── cliconf - ├── connection - ├── filter - ├── httpapi - ├── inventory - ├── lookup - ├── module_utils - ├── modules - ├── netconf - ├── shell - ├── strategy - ├── terminal - ├── test - └── vars -``` - -A full list of plugin types can be found at [Working With Plugins](https://docs.ansible.com/ansible-core/2.15/plugins/plugins.html).