Jordan Borean
79dc9a75c3
ansible-test: docker_network set as untable ( #50526 )
...
* Revert "disable docker_network ipam tests (#50477 )"
This reverts commit 4dd2b8e2d0
.
* test - docker_network mark as unstable
6 years ago
Dag Wieers
f90ec17465
ACI: Implement encoded query_string ( #50358 )
...
This requires urldecode support in Ansible
6 years ago
Dag Wieers
f45c41ef3e
urldecode filter for Jinja2 ( #28503 )
...
* urldecode filter for Jinja2
We needed this in order to deconstruct correct URLs using Jinja2.
And we might as well upstream this.
* Add integration tests
* Fixes for Python 3
* Add urlencode for older Jinja2
6 years ago
Matt Martz
3b49bbcfde
Give IncludedFile more context via ansible_search_path ( #50045 )
...
* Give IncludedFile more context via ansible_search_path to template lookups. Fixes #49969
* Update units
6 years ago
Jordan Borean
6620facd19
ansible test: re-enable mysql tests with fix ( #50430 )
6 years ago
Jordan Borean
63e454a4b2
dnf - fix conf_file loading ( #50515 )
6 years ago
Sloane Hertel
d21ed42f4b
Add unstable alias to s3_bucket integration tests ( #50508 )
6 years ago
Jonas DOREL
d9ae906772
Add galaxy.html#dependencies link ( #49984 )
...
* Add galaxy.html#dependencies link
+label: docsite_pr
6 years ago
drewmullen
04a9a887d5
allow for vault enterprise namespaces ( #50462 )
...
* enable namespaces feature for hashi_vault lookup
* include version_added dict in options documentation
6 years ago
Dag Wieers
d863027159
Windows: Add missing parameter types and doc fixes ( #50232 )
...
* Windows: Add missing parameter types and doc fixes
This PR includes:
- Adding missing parameter types
- Various documentation fixes
* Update lib/ansible/modules/windows/win_copy.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_credential.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_domain_computer.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_domain_user.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_environment.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_psexec.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_uri.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Update lib/ansible/modules/windows/win_wait_for.py
Co-Authored-By: dagwieers <dag@wieers.com>
* Ensure docstrings are raw strings
6 years ago
Klaus Frank
f80ce60cf9
Make WinRM security warning more explicit ( #50263 )
...
Make WinRM security warning more explicit.
Currently the warning is "viewed by anyone", this is a much lower risk than arbitrary command injection. Therefore the risk should be phrased appropriately.
+label: docsite_pr
6 years ago
Felix Fontein
9657a21438
Docs: add Pygments lexer for Ansible output ( #50318 )
...
* Add specialized lexer for Ansible output.
* Make linter happy.
* Use different tokens.
6 years ago
Peter Kirby
5a8aa7ca1f
Fixes #37209 - Added complex return value, instance ( #49989 )
6 years ago
Richlv
ff4af614e1
Update zabbix_action.py ( #50490 )
...
* Add trailing dots for consistency.
* Document how the current host can be specified for "run_on_hosts".
+label: docsite_pr
6 years ago
Abhijeet Kasurde
ae404d1476
gcp: documentation update ( #50183 )
...
* gcp: documentation update
* Update example about dynamic inventory
* minor typo fixes in gcp_utils
* Additional information about enabling inventory plugin in ansible.cfg
partially fixes : #44404
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
6 years ago
Abhijeet Kasurde
a45063defe
Update changed_when and failed_when examples ( #50411 )
...
Added examples in playbooks_error_handling doc for handlining
multiple conditions in changed_when and failed_when
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
6 years ago
fretis
0a56a22098
Update playbooks_loops.rst ( #50437 )
...
Error in the example for exclusion pattern
+label: docsite_pr
6 years ago
Ondra Machacek
362e603eb3
ovirt_host: Improve failed upgrade check ( #50489 )
6 years ago
Wojciech Sciesinski
df93e08d6a
Add choices of the state parameter documentation ( #50481 )
...
* Add choices of the state parameter documentation
* Consistency
6 years ago
lolcube
e295315ef7
add openssh_cert module ( #49605 )
...
* add openssh_cert module
* fix some linter issues
* address review feedback
* add basis for integration tests
* change valid datetime formats
* handle principals as set not as list
* handle principals as set not as list
* handle principals as set not as list
6 years ago
Felix Fontein
5c5cd2dc4d
openssl_*: prevent error when path includes no path ( #50322 )
...
* Prevent error when path includes no path.
* Add changelog.
6 years ago
Felix Fontein
a5bf71ac6a
openssl_csr: idempotency doesn't work correctly for keyUsage ( #50361 )
...
* Fix key usage idempotency bug.
* Extend tests.
* Add changelog.
6 years ago
Felix Fontein
6b33c588d0
docker_swarm_service: Fix typo for option type ( #50483 )
...
* Fix typo for option type in docker_swarm_service.
* Add changelog.
6 years ago
Stephan Müller
4dd2b8e2d0
disable docker_network ipam tests ( #50477 )
6 years ago
Joseph Benden
d810acf7a5
Add support for Kali Linux detection. ( #50331 )
...
Signed-off-by: Joseph Benden <joe@benden.us>
6 years ago
Adam Miller
b81a74f551
add changelog for #50242 ( #50480 )
...
Signed-off-by: Adam Miller <admiller@redhat.com>
6 years ago
Adam Miller
ca084889c7
fix order of dnf api operations so transactions don't fail ( #50038 )
...
* fix order of dnf api operations so transactions don't fail
Previously dnf.base.fill_sack() was called before
dnf.base.update_cache() which apparently breaks dnf transaction
logic as per https://bugzilla.redhat.com/show_bug.cgi?id=1658694
Fixes #49060
Signed-off-by: Adam Miller <admiller@redhat.com>
* add changelog and test case
Signed-off-by: Adam Miller <admiller@redhat.com>
6 years ago
Felix Fontein
4c473ecef4
Sort suboptions and subresults in docs. ( #50315 )
...
Fixes #50041 .
6 years ago
Wojciech Wypior
3ef71e529a
added new module to manipulate signatre sets on ASM policy ( #50209 )
6 years ago
Wojciech Wypior
78e81b2965
fixed a bug in transform_name ( #50213 )
6 years ago
Alicia Cozine
4d6807a6b0
uses correct highlighting ( #50457 )
6 years ago
Eric L
69deb73803
Fix firewalld module failing on missing protocol. ( #50242 )
...
Under Python 3.7 at least, the split of the port field fails
ungracefully if there is no slash. The fix also addresses the
case of an empty protocol after the slash.
6 years ago
Remi Verchere
23706dbc20
Add support for NRDP notifications ( #39297 )
...
* Add support for NRDP notifications
* Correct pep-8 check, adding copyright
* Correct pep-8 check using autopep8
* Update nrdp to 2.6 version
* Update nrdp to 2.7 version
* Use internal ansible url and options modules
* Remove useless comments
* Add option to validate https certs
* Update nrdp to 2.8 version
* Correct nrdp pep8
6 years ago
Kortum, Kevin
e2f6598e3f
- Fix sanity checks
...
- Fixed documentation trailing whitespaces
- Added missing/broken documentation
6 years ago
Stephan Schwarz
deba5f0e54
Added Ansible UTM Module for managing reverse proxy auth profile entries.
6 years ago
Kortum, Kevin
d3865a0a8a
- Fix sanity checks
...
- Fixed documentation trailing whitespaces
- Added missing/broken documentation
6 years ago
Johannes Brunswicker
617e20e955
Added Ansible UTM Module for managing reverse proxy frontend entries
6 years ago
Kortum, Kevin
e52b6c8554
- Fix sanity checks
...
- Fixed documentation trailing whitespaces
- Added missing/broken documentation
6 years ago
Johannes Brunswicker
d556d27825
Added Ansible UTM Module for managing reverse proxy location entries
6 years ago
Yuwei Zhou
14129b09f7
rename force to force_delete_nonempty ( #50290 )
6 years ago
John R Barker
338dfaea34
Disable zabbix_host 50386 ( #50427 )
6 years ago
Felix Fontein
26e3240315
docker_secret, docker_config: allow to base64-decode data ( #49688 )
...
* Adjust docker_config and docker_secret to be more similar.
* Add data_is_b64 parameter to docker_secret and docker_config.
* Add changelog.
6 years ago
René Moser
e761ea3f9d
vultr_server: fix multiple ssh keys not handled ( #50337 )
...
* vultr_server: fix multiple ssh keys not handled
* add changelog fragment
6 years ago
Simon Dodsley
507f89e693
Pure Storage facts fix ( #50349 )
...
* Add module for Pure Storage FlashBlade to manage directory services
* Fix facts not correctly passing into ansible_facts dict
6 years ago
Abhijeet Kasurde
eac35c68df
Temporarily disable mysql_variables ( #50403 )
...
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
6 years ago
Abhijeet Kasurde
cc001049a3
Temporarily disable mysql_user testcases ( #50395 )
...
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
6 years ago
John R Barker
ca1be227e9
Disable mysql_db ( #50385 )
6 years ago
Dag Wieers
eed330e8b5
Add missing aliases file ( #50357 )
6 years ago
Felix Fontein
a707f1a79c
ufw: add integration tests ( #50374 )
...
* Add basic integration tests for ufw.
* Being more honest.
6 years ago
John R Barker
e6ced9c73f
Debug: Size of coverage file ( #50380 )
6 years ago