| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Replace use of old `ansible.module_utils._text` and add a unit test to maintain backwards compatibility.
|
|
|
|
|
|
|
|
|
|
| |
Atthe moment if a users wants to protect virtualenv_command by using
quotes around 'venv', module will fail out as literal parsing is used
at the moment. In order to imrpove things, argparse is leveraged to
parse out passed value to the virtualenv_command
Closes-Bug: #76372
Signed-off-by: Dmitriy Rabotyagov <noonedeadpunk@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
service (#80628)
fixes #66434
* removed flag setting from enable/disable on openbsd
service was changing permanent config on openbsd, which is not expected from the this module
* if in check mode, module should not stop at enable/disable
* simplify and clean up opensd service enable/disable
* does break for those that were using service for configuring flags
|
|
|
|
|
|
|
|
| |
* fix meaning of parallel in gather_facts
* Update docs with note about parallel not always being faster
* add 'smarter' usage of gahter_timeout for parallel tasks
* restore async when needed, not always
* added typing
* parallelism tests
|
|
|
| |
uses rcctl get function to get all settables for a service
|
| |
|
| |
|
|
|
|
| |
(#80570)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
##### SUMMARY
Fix example with file lookup, filter 'from_yaml' is required.
##### ISSUE TYPE
- Docs Pull Request
+label: docsite_pr
|
| |
|
|
|
|
|
| |
only (#80370)
Co-authored-by: Sandra McCann <samccann@redhat.com>
|
|
|
| |
Fixes #80520
|
|
|
|
| |
Co-authored-by: Matt Clay <matt@mystile.com>
Co-authored-by: Don Naro <dnaro@redhat.com>
|
|
|
|
| |
This action originally bypassed the host loop, but it does not
currently.
|
| |
|
| |
|
| |
|
|
|
| |
Fixes #77073
|
|
|
|
|
| |
parameter (#80090)
Co-authored-by: Brian Scholer <1260690+briantist@users.noreply.github.com>
|
|
|
|
|
| |
Add more details about what "true" and "false" mean for the
force_basic_auth setting. Give example scenarios when clients may want
to use this setting.
|
|
|
|
|
| |
* Replace deprecated BadZipfile with BadZipFile
* Retain support for Python 2.7
|
|
|
|
|
|
|
| |
* Don't create dest directory in check mode
uncomment existing test
Fix checking for file attribute changes in check mode and add a test
|
|
|
|
|
| |
fixes #79825
|
|
|
|
|
|
|
| |
* unarchive - log errors from underlying commands
When a command run by the module fails, log the errors if debugging is enabled.
* Use debug() method
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* unarchive - properly handle relative path for dest
* Add integration test
* Return output of underlying commands with increased verbosity
* Revert "Return output of underlying commands with increased verbosity"
This reverts commit a2790c8275cdc5697b65670a0beffdc74b741bf6.
* Warn when a relative destination path was provided
|
|
|
|
|
|
|
|
| |
* Create a queue per WorkerProcess to receive intra-task updates
* Update `pause` action to use the worker queue
* Deprecate ConnectionBase()._new_stdin
* Add new `Display` convenience method `prompt_until` to manage both controller- and worker-sourced prompting without cross-fork stdin sharing, in-worker mechanism to handle request-response over new worker queue.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* Fix detection of available hashlib algorithms
Detection of hashlib algorithms now works on Python 3.x.
The new implementation works on Python 2.7 and later.
Test coverage is provided by both integration and unit tests.
* Add additional details about hashlib in docs
|
|
|
| |
Convert these strings to comments, since they are not valid docstrings.
|
|
|
|
|
|
|
| |
* Add ignores for intentional pointless statements
* Remove redundant docstring
* Fix function docstring placement
|
|
|
|
|
| |
* document that hash_behaviour does not apply to individual files of variables when using the dir option
* add tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Improving the documentation on how we generate the default value of the filename parameter
* fix pep8
* removing unnecessary documentation and improving the module's return
* making the RETURN docs
* pep8
* version_added and changelog
* module._diff
* module._diff fix
* add rudimentary tests for new outputs
---------
Co-authored-by: Matt Davis <mrd@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Update `collections.abc` imports
- Use `six.moves` for modules and module_utils
- Use `collections.abc` for controller code
This avoids using `ansible.module_utils.common._collections_compat`,
which was added before the vendored `six` was updated to provide these
imports.
* Update _collections_compat to use six.moves
Also update the custom pylint rule to reflect this change.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
* docs: Extend password entry of ansible.builtin.user
Clarify that `password` sets the password hash.
Not the actual password.
Fixes part of #79684
|
|
|
|
|
|
|
| |
* Update mypy and its dependencies.
* Fix requirements.
* Remove unnecessary matching constraints.
|
|
|
| |
Otherwise ansible-lint complains: https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy
|
|
|
|
|
| |
* Better json content type detection for uri
* typo
|
|
|
|
|
|
|
| |
* Ensure we are passing ciphers to all url_get calls. Fixes #79717
* Add clog frag
* Fix tests
|
|
|
|
|
| |
chroot or with $SYSTEMD_OFFLINE==1 (#79643)
Signed-off-by: Olaf Klischat <olaf.klischat@gmail.com>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* set locale to get_best_parsable_locale for the python-apt API
* add a test case
* add changelog
* remove test that tests nothing
|
|
|
| |
Fixes #79360
|