Kevin Breit
db783eb2b9
New module - meraki_firewalled_services ( #57289 )
...
* Initial commit for module
- Module can query or modify network services on Meraki gear
- Check mode supported
- Integration tests included
* Small change to examples
* Move mutual exclusive to build in approach
* Sanity err
* Split integration tests into two files to avoid delegate_to
* Add the integration tests, woops
2019-07-26 11:39:20 -04:00
Pilou
65013c4001
consul_session: ensure certificate is checked when HTTPS is used ( #58693 )
...
* consul_session: ensure SSL certificate is checked
* consul_session: don't ignore validate_certs param
2019-07-26 15:05:38 +02:00
Sachidananda Urs
08b9e18d4f
Call remove-brick only if no. of bricks > 0 ( #56781 ) ( #58635 )
2019-07-26 07:15:11 -04:00
Simon Dodsley
d82446652f
Update FlashBlade filesystem module to support quotas and NFS v4.1 ( #59559 )
2019-07-26 04:06:08 -04:00
Nilashish Chakraborty
3da4c0dd3a
Update argspec to normalize across platforms ( #59596 )
...
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
2019-07-26 12:30:26 +05:30
Abhijeet Kasurde
c1ee1f142d
gcp_utils: Handle JSON decode exception ( #59427 )
...
Handle json.loads exception rather than providing stacktrace
Fixes : #56269
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-07-26 11:31:07 +05:30
Adam Miller
49da47d09f
force_basic_auth for default httpapi connection auth ( #59193 )
...
The default for a httpapi connection is to do basic auth, however
when setting the url_username and url_password without
force_basic_auth, the call to ansible.module_utils.open_url would
not always properly handle the basic auth headers based on the
combinations of **kwargs passed. This ensures that is always the
case when no session token exists and as the goal is to use basic
auth in the event of not having a session token, this should be
a safe operation.
Signed-off-by: Adam Miller <admiller@redhat.com>
2019-07-25 16:40:09 -05:00
Nilashish Chakraborty
3a103405b1
Handle lowercase in version info ( #59565 )
...
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
2019-07-25 23:06:53 +05:30
basos g
3c8838f0f7
Add check mode indicators at the beginning and the end of the playbook, play, and task ( #49432 )
...
* Add integration tests for default callback check mode markers
2019-07-25 12:05:43 -04:00
Brian Coca
a5d409a8b2
point at corresponding version ( #59200 )
2019-07-25 11:54:01 -04:00
Dieter De Moitie
9b9066d10f
Updated references to removed modules in documentation ( #59580 )
2019-07-25 11:41:07 -04:00
Andrey Klychkov
db26fe2f1e
module_utils.common.*: removed unused objects ( #59570 )
2019-07-25 11:04:18 -04:00
Sandra McCann
cfe01390aa
clarify ansible-galaxy collection cli command options ( #59470 )
...
* clarify ansible-galaxy collection cli command options
2019-07-25 09:41:37 -05:00
Gonéri Le Bouder
ef59dd2ca2
vmware_guest_network: fix the network look up
...
Before this fix, the module was not able to look up a `VM Network` located at
`/DC0/network/VM Network`. As a consequence, the test module was failing
with a real environment (Non-govcsim).
2019-07-25 14:02:52 +02:00
Xu Yuandong
585128e5ac
ce_mlag_config: update to fix a bug. ( #59336 )
...
* update to fix a bug.
* update
* Update ce_mlag_config.py
* Update ce_mlag_config.py
2019-07-25 07:12:15 -04:00
Brian Coca
e9a37f8e31
prevent templating of passwords from prompt ( #59246 )
...
* prevent templating of passwords from prompt
fixes CVE-2019-10206
2019-07-24 16:00:20 -04:00
Tomáš Pospíšek
4ef38fcee2
remove useless overhead ( #59517 )
...
in the examples for the apt module, pass the list directly to the `pkg` option instead of providing it in `vars`
2019-07-24 14:24:53 -05:00
Nilashish Chakraborty
119f2b873a
junos_ping supports only network_cli ( #59534 )
...
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
2019-07-24 23:11:27 +05:30
Nilashish Chakraborty
f2b0bfd4aa
Add iosxr_lacp resource module ( #59281 )
...
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
2019-07-24 22:55:42 +05:30
Sandeep Bandi
1d82d25ea2
Adding Avi ansible lookup module ( #58667 )
...
* Adding Avi ansible lookup module
(cherry picked from commit 77b8951f68cbc889e6595b2a359ca27b84a43c0d)
* Added description for examples
* Added debug logs and unit tests
* Fix __builtin__ import and restting super
* Fix pep8 errors
* Updated as per review comments on IP address
2019-07-24 11:35:04 -04:00
Andrey Klychkov
e9725862ca
mysql.py: remove unused import ( #59511 )
2019-07-24 10:36:18 -04:00
Strahinja Kustudic
5fc769f6b1
sysctl - Reload also when current system values differ ( #56153 )
...
Previously if `sysctl_set=no` (which is the default) this module only
checked for changes in the sysctl.conf file to decide whether it should
reload it or not. This means that if the values in the conf file are the
same as they are set with the module, but the current values on the
system are different, that this module wouldn't apply the changes on the
system and thus the value set with the module wouldn't be applied on the
OS. This isn't obvious and it doesn't make sense that the module works
like that by default, especially because there is a separate option
`reload`. Now sysctl will also check if the current value differs on the
system and if it does, it will reload the file again.
2019-07-24 10:04:15 -04:00
Abhijeet Kasurde
401e70c0a2
VMware: add facts about tags in vmware_cluster_facts ( #56848 )
...
Fixes : #46458
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-07-24 15:45:15 +05:30
Andrey Klychkov
fd35833554
postgresql modules: fix by flake8 ( #59497 )
2019-07-24 15:40:44 +05:30
Xu Yuandong
93265bf92e
ce_mtu: update to fix bugs. ( #59343 )
...
* update to fix bug.
* Update ce_mtu.py
* Update ce_mtu.py
* Update ce_mtu.py
2019-07-24 05:53:08 -04:00
Abhijeet Kasurde
281307b492
VMware: make properties configurable ( #53050 )
...
This allows user to control set of properties which can be included
in the hostvars.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-07-24 15:18:32 +05:30
Martin Krizek
1010363c0b
Preserve original variables when using a loop ( #59426 )
...
Fixes #59414
2019-07-24 11:35:14 +02:00
Jill Rouleau
5a7f579d86
Fix clouds_yaml_path type in openstack inventory
...
Fixes: 59442
2019-07-24 10:25:44 +02:00
Xu Yuandong
6ff54c546e
update to fix a bug ( #59346 )
2019-07-24 04:09:53 -04:00
Abhijeet Kasurde
bafd06bc89
VMware: Fix custom value in vmware_guest ( #58157 )
...
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-07-24 10:54:16 +05:30
Jordan Borean
ba7097cba3
Collection test ( #59488 )
...
* Add missing __init__.py for collection unit tests
* Added more tests for collection install and remove default path
2019-07-24 12:38:32 +10:00
Abhijeet Kasurde
d9b9e07d0b
VMware: Add datatypes in documentation ( #59221 )
...
* Remove E337 warnings
* Update docs
* Fix minor typos
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2019-07-24 07:55:55 +05:30
Jordan Borean
3581e63ca8
psexec - update example for for delegation example ( #59475 )
2019-07-24 10:12:34 +10:00
Chaz Ruhl
aebc3b0730
Update cobbler_system.py ( #59316 )
...
State was not referenced appropriately in doc examples.
2019-07-23 15:13:07 -05:00
Nathan Swartz
6a77533b57
Specify type-str for common NetApp E-Series documention options. ( #59459 )
2019-07-23 14:38:11 -05:00
Shachaf92
092e5515d1
win_firewall_rule - update doc for localport dep. on protocol ( #59467 )
2019-07-23 14:37:08 -05:00
UNR Information Security
7b4ce9e4ae
Update find.py ( #59456 )
...
Return values for `matched` and `examined` in the find module are integers and not strings.
2019-07-23 13:51:56 -05:00
Andrey Klychkov
333953117c
Add human_to_bytes isbits arg unit tests&docstring
...
PR #58623
Co-Authored-By: Sviatoslav Sydorenko <webknjaz@redhat.com>
Co-Authored-By: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
2019-07-23 14:56:56 +02:00
Xu Yuandong
133cb945ae
update to fix bugs. ( #59345 )
2019-07-23 06:30:45 -04:00
Martin Nečas
1998c9c19d
add example ( #59287 )
2019-07-23 06:05:17 -04:00
Martin Nečas
8ee587aa7d
ovirt add template cluster ( #59378 )
...
* ovirt add template cluster
* update doc
* add global search fallback
* update docs
2019-07-23 06:04:42 -04:00
Xu Yuandong
f1dbf6292b
update to "state is present but all of the following are missing: password" bug ( #59344 )
2019-07-23 05:56:01 -04:00
Xu Yuandong
b728347260
ce_bfd_session: update & add 2 params. ( #59333 )
...
* update & add 2 paramers.
* update for shippable
* update for shippable
2019-07-23 03:38:27 -04:00
Ganesh Nalawade
1092ee55d4
Add [junos_lag_interfaces] resource module ( #59011 )
...
* Add junos_lag_interfaces resource module
* Add new resource module junos_lag_interfaces.
* Targets model https://github.com/ansible-network/resource_module_models/pull/29
* Deprecate junos_linkagg module
* Fix CI issues
* Fix junos integration test cases
* Fail if base lag interface is not configured
2019-07-23 11:53:15 +05:30
Trishna Guha
3bad4d6a50
Add nxos_lag_interfaces resource module ( #59031 )
...
* Add nxos_lag_interfaces resource module
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* ix CI failure
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* module_utils nxos transport-provider fix
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* CI failure
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* nxos_lag_interfaces tests
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
* Integration test
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2019-07-23 11:11:37 +05:30
The Magician
04445f184b
Bug fixes for GCP (as of 2019-07-09T06:06:53Z) ( #59322 )
2019-07-22 22:07:48 -07:00
The Magician
c6c262a07e
Bug fixes for GCP (as of 2019-07-09T06:06:53Z) ( #59131 )
...
* Bug fixes for GCP modules
* ignore syntax
2019-07-23 10:01:47 +05:30
The Magician
b81239ce50
Bug fixes for GCP (as of 2019-07-09T06:06:53Z) ( #59323 )
...
* Bug fixes for GCP modules
* ignore syntax
2019-07-23 10:00:22 +05:30
The Magician
5d412d89b1
Bug fixes for GCP (as of 2019-07-09T06:06:53Z) ( #59325 )
...
* Bug fixes for GCP modules
* ignore syntax
2019-07-23 09:58:21 +05:30
Martin Nečas
c7f414dece
ovirt vm when creating Nonetypefix ( #59377 )
...
* ovirt vm when creating Nonetypefix
* update fix and add comment
* add changelog
* Update 59377-ovirt-vm-when-creating-fix.yml
2019-07-22 16:18:08 -07:00