mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
Refactor openssl_privatekey module, move add openssl_privatekey_pipe module (#119)
* Move disk-independent parts of openssl_privatekey to module_utils and doc_fragments. * Improve documentation. * Add openssl_privatekey_pipe module. * Fallback in case no fingerprints are returned. * Prevent no_log=True for content to stop module from working correctly. * Forgot version_added. * Update copyright. All the interesting code is no longer in this file anyway. * Remove file arguments. * Add framework for action modules. * Convert openssl_privatekey_pipe to action plugin. * Linting. * Bump version. * Add return_current_key option. * Add no_log to examples. * Remove preparation for potential later extensibility (easy to re-add when needed). * Fix deprecation version in docs. * Use new ArgumentSpec object for AnsibleActionModule as well.
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
plugins/module_utils/action_module.py import-2.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-2.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.5!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.8!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.9!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py pylint:ansible-bad-module-import # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/compat/ipaddress.py future-import-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py metaclass-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py no-assert
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
plugins/module_utils/action_module.py import-2.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-2.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.5!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.8!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.9!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py pylint:ansible-bad-module-import # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/compat/ipaddress.py future-import-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py metaclass-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py no-assert
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
plugins/module_utils/action_module.py import-2.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-2.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.5!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.6!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.7!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py import-3.8!skip # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/action_module.py pylint:ansible-bad-module-import # This is not supposed to be included by modules, but by action plugins
|
||||
plugins/module_utils/compat/ipaddress.py future-import-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py metaclass-boilerplate
|
||||
plugins/module_utils/compat/ipaddress.py no-assert
|
||||
|
||||
Reference in New Issue
Block a user