summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* #27499 : Fixes idempotence issue for nxos_pim_rp_address modulenxos_pim_rp_address_idempotence_fixkedarX2017-09-111-6/+5
|
* Create a new pipe for sshpass on retries. Fixes #29095Matt Martz2017-09-111-0/+6
|
* fix cs_zone_facts tests, namespace feature removed (#29184)Brian Coca2017-09-111-20/+20
| | | | | | * fix cszonefacts .. namespace feature removed * also removed the 2nd instance of ansible_facts
* adds soft-update logic if force is set to no in zabbix_host module in… ↵Dusan Matejka2017-09-111-1/+20
| | | | | | | | (#22614) * adds soft-update logic if force is set to no in zabbix_host module instead of failing * makes zabbix_host soft-update compatible with python2.6
* Rename SuSE distribution helper function to SUSE (#29090)Dirk Mueller2017-09-111-5/+5
| | | | | | This is a noop change, but the company renamed itself from SuSE to SUSE round about 15 years ago. See https://www.suse.com/brandcentral/suse/identity.php
* Fix mail module headers encoding (#29109)Andrea Tartaglia2017-09-111-2/+5
| | | | | | * Fixes encoding issue in Subject line * Use Header to correctly set header charset
* Fixes #20443 - Adjust version checking regex to account fo no comma in ↵Jonathan Karras2017-09-111-1/+1
| | | | | | | IOS-XE (#29157) * Adjust version checking regex to account fo no comma in IOS-XE * Adjusted regex to include last character of version number
* Fix handling of config vars with eval expression (#29536)Ricardo Carrillo Cruz2017-09-111-1/+1
| | | | | | The config variables defined with eval, like INVENTORY_IGNORE_EXTS, are not stored properly once the eval is processed. This causes references to the constant to still have the eval in the value.
* nxos_config CI fix (#29437)Trishna Guha2017-09-114-8/+8
| | | Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* fix nxos_command nxapi test output (#29436)Trishna Guha2017-09-111-2/+3
| | | Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* Fix wheel dependency on python 2.6. (#29388)Matt Clay2017-09-102-0/+2
| | | | | * Fix wheel dependency on python 2.6. * Limit wheel version for tox on python 2.6.
* Fix section in known_hosts documentationErwin Oegema2017-09-101-1/+1
| | | SSHD is part of section 8, SSH is part of section 1.
* postgresql_db: Document that name and db are aliases (#29180)Andreas Olsson2017-09-101-0/+1
|
* Handle missing docker-py better (#27540)Will Thames2017-09-101-2/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update docker inventory to use APIClient docker-py has been updated, and the `Client` class no longer exists. We use the new `APIClient` class. To provide graceful failure when docker-py is not installed, we need to create a dummy `Client` class so that the inventory script will get as far as displaying a useful error message Before ``` $ contrib/inventory/docker.py --pretty Traceback (most recent call last): File "contrib/inventory/docker.py", line 418, in <module> class AnsibleDockerClient(Client): NameError: name 'Client' is not defined ``` After ``` $ contrib/inventory/docker.py --pretty Failed to import docker-py. Try `pip install docker-py` - cannot import name Client ``` * docker inventory configuration file location Allow docker.yml to live next to docker.py, as well as in the current directory
* remove fact namespacingBrian Coca2017-09-103-3/+3
| | | | | | | since we want to make namespaced facts drop ansible_ prefix but don't have the time before release to perfect this feature, we are going to postpone it for now until we have the resources to fix this issue. That way we won't have people relying on the 'incorrect' names for a release.
* Fix SID Lookup Issues on Assorted Windows Modules (#28979)Andrew Saraceni2017-09-117-334/+54
| | | | | | * fix sid lookup issues and update copyright/license to latest format * simplify win_owner and win_share by removing unnecessary function
* Adding tls settings for Zabbix host (#28692)Werner Dijkerman2017-09-101-14/+126
| | | | | | | | | | | | | | | | * Adding tls settings for Zabbix host * Using the correct Ansible version * Removing wildcard import * Added module_utils package * Set version_added for visible_name back to 2.3 * Added description for >= Zabbix 3.0; Added parameters for function * Setting version_added --> 2.5; Removed trailing whitespace
* consul + Python 3.5 (#23935)William Griffiths2017-09-091-2/+2
| | | | | * Fix #23934 - consul + Python 3.5 * List comprehension instead of filter with lambda
* Fixes #23680 bug with py3.x due to binary string handling (#23688)Miguel Ángel Ajo2017-09-092-23/+18
| | | | | | * This commit includes a unit test to exercise the _is_role function and make sure it doesn't break in any Python version. * Import os.path and other minor fixups
* conn,buildah: don't pass bytes to shlex.split (#27896)Tomas Tomecek2017-09-091-3/+3
| | | * conn,buildah: don't pass bytes to shlex.split on python3
* Fix set theory filters for python3Toshio Kuratomi2017-09-092-4/+126
| | | | | | | | The set theory filters need to use lists rather than generators on python3. Also add unit tests for most of the mathstuff filters Fixes #26494
* Cosmetic changes to documentation and arg_specDag Wieers2017-09-101-141/+132
| | | I didn't want to drag this any longer than it already has. Hope I am doing well.
* Change version_added from 2.4 to 2.5Simon Wydooghe2017-09-101-1/+1
|
* Remove unneccesary statementsSimon Wydooghe2017-09-101-85/+28
| | | | | | * Remove 'required: false' statements from the argument docs * Remove 'required=False' parameters from argument spec * Remove 'default: null' statements from the argument docs
* Add --syn option to iptables moduleSimon Wydooghe2017-09-101-0/+30
| | | | | | | | | | This adds the --syn option to filter SYN packets. Can be negated. I added a generic append_match_flag function which can be used to add match flags without parameters. It also allows negating the flag if the added param allows this. Not sure if I took the best approach here so all feedback welcome :)
* Romain dartigues fixes (#29169)Toshio Kuratomi2017-09-092-5/+4
| | | | | | | | | * cloud: azure: fix typo introduced in commit 16d23e9 The commit "Add reference to VNET resource group (#26052)" removed an used variable. * network: aos: error hint never shown
* Fixes #26793: convert insert regex to_bytes before searchingAnton Baklanov2017-09-091-2/+2
|
* Update qos parameter for volume manager and update example. (#27594)Kevin Hulquest2017-09-091-2/+3
|
* Fix py3 string issue in jail connection plugin (take 2) (#28374)Pierre Guinoiseau2017-09-091-13/+4
| | | | * Fix py3 string issue in jail connection plugin
* Fix typoMaor Lipchuk2017-09-091-1/+1
|
* fix os_image so it works when id is None (#29147)Joshua C. Randall2017-09-091-2/+5
| | | Fixes #29145
* Fix pylint issue.Matt Clay2017-09-091-2/+0
|
* Misc typo correctionsAbhijeet Kasurde2017-09-094-7/+7
| | | | | | | | | Fix adds correction for typos * Anisble to Ansible * Fasle to False Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
* ec2_group: unnest variable assignment. Fixes #29113.s-hertel2017-09-091-1/+1
|
* cloudtrail: import botocore.exceptions in a try/except.s-hertel2017-09-091-1/+5
|
* fixes to config/setting retrievalBrian Coca2017-09-0970-1302/+1872
| | | | | | | | | | | | | | | | | | | | | | - better variable precedence management - universal plugin option handling - also updated comments for future directions - leverage fragments for plugins - removed fact namespacing - added 'firendly name' field - updated missing descriptions - removed some unused yaml entries, updated others to reflect possible future - documented more plugins - allow reading docs using alias - short licenses - corrected args for 'all plugins' - fixed -a option for ansible-doc - updated vars plugins to allow docs - fixed 'gathering' - only set options IF connection - added path list and renamed pathspec mostly the diff is , vs : as separator - readded removed config entries that were deprecated but had no message ... and deprecated again - now deprecated entries give warning when set
* Expand disabled pylint rules. (#29162)Matt Clay2017-09-095-9/+87
| | | | * Expand disabled pylint rules. * Fix pylint and unicode issues in ansible-test.
* Fix minor formatting issue in python_3_support.rst (#29161)Cheng Lian2017-09-091-1/+1
| | | Thanks @liancheng!
* module_utils/ovirt.py: fix broken importPierre-Louis Bonicoli2017-09-082-2/+1
|
* Fixes #22374: fix route table update in ec2_vpc_route_table module (#27234)Antoine Rouaze2017-09-081-1/+16
| | | | | The ec2_vpc_route_table module notifies about a change on the route table when the instance Id of the NAT instance has changed, but in fact, nothing changes. The module call the create_route function the AWS SDK to add a new route with the same cidr. The AWS SDK should return an error instead of nothing. Call replace_route function instead of create_route when a route table with the same cidr but with different target destination is present.
* Add max_priority to give priority ability to a queueGerben Geijteman2017-09-081-2/+17
|
* Fixes #19666 Correct AMI information output by ec2_ami module (#27021)Ross Williams2017-09-081-1/+3
| | | Add AMI name and platform to outputs on AMI creation
* Remove unnecessary import skip entries.Matt Clay2017-09-081-47/+0
|
* rename nxos test basic-no-exec to basic-no-motd (#29144)Trishna Guha2017-09-081-0/+0
| | | Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* [cloud] EC2 AutoScaling fix for respecting zero as the desired, min&max size ↵Willem van Ketwich2017-09-081-3/+3
| | | | values (#27870)
* nxos_banner CI fix (#29134)Trishna Guha2017-09-082-9/+9
| | | Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* Use 'hostname switch' on setup/teardown tasks for nxos_config non_idempotent ↵Ricardo Carrillo Cruz2017-09-081-2/+2
| | | | | (#29132) inventory_hostname breaks CI due to too long string.
* Set hostname to 'switch' on nxos_config toplevel setup/teardown tasks (#29127)Ricardo Carrillo Cruz2017-09-081-2/+2
| | | | | Using inventory_hostname breaks in our CI, as the inventory_hostname translates to a long UUID, exceeding the maximum length for a NXOS hostname.
* Set hostname to 'switch' on nxos_system teardown (#29126)Ricardo Carrillo Cruz2017-09-081-1/+1
| | | | | | On setup we set it to 'switch', so teardown should be 'switch'. Also, using inventory_hostname breaks the test, since in our CI it's a long UUID string, which exceeds the 32 chars maximum for setting a hostname on NXOS.
* Increase persistent timer setting for network integration test (#29121)Ganesh Nalawade2017-09-081-0/+1
|