Commit Graph

33138 Commits (dba43ff3d5d8c78fef525e98aaf01b2cc0b3aa2d)
 

Author SHA1 Message Date
Toshio Kuratomi dba43ff3d5 Update packaging versions.yml with the info from the devel branch 8 years ago
Toshio Kuratomi 5e9054655e Add date for the 2.4.1 release 8 years ago
Toshio Kuratomi f8fa79818c Revert "Prefer the stdlib SSLContext over urllib3 context"
This reverts commit f48af16ddc.

Meant to push to 2.4.2
8 years ago
Toshio Kuratomi f48af16ddc Prefer the stdlib SSLContext over urllib3 context
We do not go through the effort of finding the right PROTOCOL setting if
we have SSLContext in the stdlib.  So we do not want to hit the code
that uses PROTOCOL to set the urllib3-provided ssl context when
SSLContext is available.  Also, the urllib3 implementation appears to
have a bug in some recent versions.  Preferring the stdlib version will
work around that for those with Python-2.7.9+ as well.

Fixes #26235
Fixes #25402
Fixes #31998

(cherry picked from commit 725ae96e1b)
8 years ago
Toshio Kuratomi 4a4590a2c6 New release v2.4.1.0-0.4.rc2 8 years ago
Matt Clay 3f4005038d Fix docker_secret integration test dependencies.
(cherry picked from commit eb899c9bcd)
8 years ago
Toshio Kuratomi d32f138f40 Fix for hostname module on RHEL7.5 added to changelog 8 years ago
Martin Krizek 7a23162ae4 hostname: fix for a new version of rhel (#31839)
Fixes #31811
(cherry picked from commit efec43dd1e)
8 years ago
Toshio Kuratomi 05535b363f Add changelog for cherry-picks 8 years ago
Ilya Margolin 13adf5dc16 Fix -M/--module-path option for ansible-doc and ansible-console (#31744)
Fixes #31743
(cherry picked from commit 9bc60cd05e)
8 years ago
Brian Coca d7e3665f3f fix closure issues
fixes #31786

(cherry picked from commit a26a2841ff)
8 years ago
Abhijeet Kasurde 7e6554b9ff Correct usage for shutil.rmtree (#31541)
* Correct usage for shutil.rmtree

Fix adds correct usage of shutil.rmtree in git module

Fixes: #31225

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>

* Include archive tests so they get run

* Use new include syntax

* Cleanup syntax on git tests

- use multi-line YAML
- remove unneeded {{ }} around vars in conditionals
- remove unneeded quotes
- add task file name to task names for easier troubleshooting when things fail

* Make archive tests work for RHEL/CentOS 6

The older versions of Jinja2 in RHEL/CentOS 6 required assertion tasks using the map filter to be skipped.

The older version of git required gzip compression to be skipped on RHEL/CentOS 6.

* Account for ansible_distribution_major_version missing

(cherry picked from commit a047fe0e4c)
8 years ago
Toshio Kuratomi c7504d9d2f Add win_regedit fixes 8 years ago
Jordan Borean 466baba040 win_regedit: fix extra info coming into stdout (#31813)
(cherry picked from commit 888de842b3)
8 years ago
Zubair Lutfullah Kakakhel 5f8a126d35 vmware_vm_facts: Add error check for config.vm (#31629)
Add a simple check to see if vm.config exists before looking for
vm.config.hardware
(cherry picked from commit 4034630625)
8 years ago
Sam Doran 0afc3ae3ed Ensure valid_plugin_bin is defined
Fixes #31824

(cherry picked from commit 2c8382eb87)
8 years ago
Toshio Kuratomi a40a8c4a6e Add the documentation of backup_path to changelog 8 years ago
John R Barker df85dc55fb Document backup_path (#31844)
Fix a few consistency issues at the same time
(cherry picked from commit 598084fbc8)
8 years ago
Toshio Kuratomi e665b2ed5e Remove the change for implicit inventory and all vars 8 years ago
Brian Coca d36c582787 add all group vars back to implicit localhost
fixes #31857
reverts #31425

(cherry picked from commit 7fe6a8dab7)
8 years ago
Matt Clay 5d2f07aebb Multiple Parallels host support for ansible-test. (#31552)
(cherry picked from commit 05ec376197)
8 years ago
Toshio Kuratomi 48fe112455 Since these changes went in after rc1, be sure to document them in the changelog
Normally I wouldn't mention test infrastructure fixes i nthe changelog
but since they're going in after rc1, I'm going to mention them just to
be safe.
8 years ago
Matt Clay e8d4667b87 Remove cryptography install from CI other test.
(cherry picked from commit 03e18aa52e)
8 years ago
Toshio Kuratomi de458be1eb New release v2.4.1.0-0.3.rc1 8 years ago
Matt Clay 78cb32ccb7 Update Azure tests to limit cryptography version. (#31616)
(cherry picked from commit 8acb901bf2)
8 years ago
Toshio Kuratomi 0743b577b7 Add dynamic includes fix to changelog 8 years ago
James Cammarata 0aa1442c91 Fix static determination for include_tasks
An incorrect removal of a conditional resulted in include_tasks falling
through to the old static detection mechanism incorrectly. This restores
the previous conditional check.

Fixes #31593

(cherry picked from commit 3ef4f7e847)
8 years ago
Toshio Kuratomi 723beb58d1 Add inventory plugin path fix to changelog 8 years ago
Jacob Floyd b1038b7903 Fix Inventory Plugin Loading (#31605)
This change makes the PluginLoader use DEFAULT_INVENTORY_PLUGIN_PATH setting.
Inventory Plugins were only being loaded the 'inventory_plugins' folder of the current directory,
as well as the ansible-provided inventory plugins (e.g. `/path/to/site-packages/ansible/plugins/inventory`).
(cherry picked from commit 0371d0deda)
8 years ago
Toshio Kuratomi 878ed2c079 Add relative paths fix to changelog 8 years ago
Ganesh Nalawade 6cbdc17aa1 Remove log of command executed in persistent connection (#31583)
* Remove log of command executed in persistent connection (#31581)

(cherry picked from commit 97d5e0d027)

* Update changelog
8 years ago
Ganesh Nalawade e001fb7c14 Fix rollback in junos_config (#31424) (#31563)
* Fix rollback in junos_config (#31424)

* Fix rollback in junos_config

Fixes #30778

*  Call `load_configuration` with rollback id in case
   the id is given as input
*  Pass rollback id to `get_diff()` to fetch diff from device

* Fix unit test

(cherry picked from commit 88da95bb77)

* Update changelog
8 years ago
Brian Coca daa2810410 fix paths to actually be config file relative (#31533)
* fix paths to actually be config file relative

also allow to unfrack paths for 'not cwd'
only use -i 'localhost,' for adhoc in pull
(cherry picked from commit 3886f80e44)
8 years ago
Toshio Kuratomi e60e70ccd6 Try to cleanup after the rpm_key test
(cherry picked from commit dde2c96d67)
8 years ago
Matt Davis 76d84fd4d6 CHANGELOG update for become/runas error messaging 8 years ago
Matt Davis c1254a8108 improve become/runas error messaging on bogus/missing username (#31551)
(cherry picked from commit a4ceb4c35f)
8 years ago
Martin Krizek 50af2dc462 Add yum fix to changelog 8 years ago
Martin Krizek b4184f9825 yum: fix crashes installing from file/url
(cherry picked from commit 24c360287e)
8 years ago
Sloane Hertel 3505e5eba0 aws_s3: fix upload_file's ExtraArgs - fixes #31232 (#31487) (#31538)
* Module option metadata are extra arguments rather than S3 object metadata: update ExtraArgs variable.

* Maintain backwards compatibility by guessing at content type rather than always defaulting to binary/octet-stream.
8 years ago
Toshio Kuratomi d3ccca2b8d Add rpm_key fix to changelog 8 years ago
Lukas Bednar ead2fc5a64 [rpm_key] Fix to import first key on the system (#31514)
* [rpm_key] Fix to import first key on the system

Fixes: #31483

* [rpm_key] removed unsafe_shell and "throwaway" underscore

* [rpm_key] adding test to add the first key on system

(cherry picked from commit 5ccc1072ea)
8 years ago
Sloane Hertel 3a0aa4ddff [cloud] Fix ec2_group when security group lacks a VPC (#31526) (#31540) 8 years ago
arnonki 0e01684873 Use default values for object returned from aws to prevent TypeError (#31455)
* Use default values for object returned from aws to prevent TypeError
NoneType exception fixes #31454
(cherry picked from commit 6df6f79bbd)
8 years ago
Sam Doran 8afa7c73df Add sysctl fix to CHANGELOG 8 years ago
Sam Doran 60874bad3e Remove sysctl entries when state=absent (#31486)
* Remove sysctl entry when state=absent
* Cleanup sysctl integration test syntax
* Correct grammar on error message
* Add sysctl integration test for state=absent
(cherry picked from commit 2610b521bc)
8 years ago
Brian Coca ccd86d5a00 clarified inventory_dir changes for 2.4 (#31484)
* clarified inventory_dir changes for 2.4

added example on how to restore (mostly) old behaviour for add_hosts

fixes #30901
(cherry picked from commit dc69af50dc)
8 years ago
Toshio Kuratomi e5b8809ea2 Add changelog for using include/import with adhoc 8 years ago
Brian Coca ed1f6df9d3 better message for unsupported include/imports
adhoc cannot currently execute these actions

(cherry picked from commit 74107ff7cc)
8 years ago
Rob 9bde0acc0a [cloud] Fix #31271 - cast all tag values as strings (#31272)
* Fix #31271 - cast all tag values as strings

* Replace `str` with `to_native`

(cherry picked from commit 154191f56d)
8 years ago
Toshio Kuratomi d45f662a52 Add the revert of namespaced facts to the changelog 8 years ago