Commit graph

8406 commits

Author SHA1 Message Date
Allen Sanabria
988f468457 Added test to kinesis_stream module.
* Update kinesis_stream based on tests.
* Added tests for kinesis_stream.
2016-07-14 13:46:57 -07:00
Allen Sanabria
514e285d1a update doc string 2016-07-14 13:46:57 -07:00
Allen Sanabria
4e1c3a58b3 Create, Delete, and Modify a Kinesis Stream.
* Create a Kinesis Stream.
* Tag a Kinesis Stream.
* Update the Retention Period of a Kinesis Stream.
* Delete a Kinesis Stream.
* Wait for a Kinesis Stream to be in an ACTIVE State.
2016-07-14 13:46:57 -07:00
Ryan S. Brown
68ca157f3b Merge branch 'pr/1775' into devel
Include `iam_server_certificate_facts` module.
2016-07-14 16:25:08 -04:00
Ryan S. Brown
1a7d26a1b8 iam_server_certificate_facts: Correct call to get_server_certs 2016-07-14 16:24:51 -04:00
Allen Sanabria
f36ec115fc iam_server_certificate_facts: list all certs
If a server name isn't passed, retrieve all server certificates by
default. Change return value to a dict with the server_cert_name being
the key.
2016-07-14 16:23:49 -04:00
Allen Sanabria
4615a6cc76 iam_server_certificate_facts: change except to python 2.6 syntax 2016-07-14 16:22:40 -04:00
Allen Sanabria
c574dbee54 iam_server_certificate_facts: Retrieve attributes from server certificate
This module will allow you to retrieve all the attributes
related to a server certificate.
2016-07-14 16:22:21 -04:00
Bulat Gaifullin
e32897f4d9 Add ipmi modules for power and boot management (#2550)
* Add ipmi modules for power and boot management

* ipmi_power - module for power management
  Parameters:
    - name
    - port
    - user
    - password
    - state
    - timeout

* ipmi_boot - module for boot order management
  Parameters:
    - name
    - port
    - user
    - password
    - bootdev
    - state
    - persist
    - uefi

* Fixed copyright

* Supported check mode

Also added description for RETURN

* Added ipmi to list of excludes of tests for python2.4

* added no_log=True for secrets

* added type for port and mark bootdev as required field
2016-07-14 16:38:20 +02:00
Dag Wieers
54ce5c88d5 wakeonlan: New module to send out magic WOL packets (#2271)
* New module wakeonlan to send out magic WOL packets

For a local project managing desktop Windows systems at an elementary school, we want to send out wake-on-lan packets to all systems before continuing using Ansible.

That is the purpose of this module.

PS We can make this module idempotent by implementing arping support using scapy. At some point I may add this, at this time I simply plan on using wait_for to check if the system is online.

* Improved documentation and notes

* Improve the documentation a bit

* Fix Travis warnings and review remarks

* Fix exception handling to support both python2 and python3

* Documentation changes
2016-07-14 09:24:08 -04:00
Sudheer Satyanarayana
2078c4b4da which not who (#2557)
minor text fix
2016-07-13 10:26:13 -04:00
Andrii Radyk
f2b255ffa3 Add zypper refresh support in zypper module (#2411)
* added zypper refresh support

* removed trailing symbols
* added forced zypper refresh support similar to update_cache for apt module

* removed unnecessary blocks and cleaned up the logic for refresh

* added update_cache as alias for refresh to be similar to apt/yum module

* update zypper module according to comments
2016-07-13 08:28:05 +02:00
Robin Roth
8fe06a86f7 Check for zypper version before using options (#2549)
* priority needs zypper version >= 1.12.25
* gpgcheck needs zypper version >= 1.6.2
* output warnings if version not sufficient for option
* fixes #2548
2016-07-12 22:52:43 +02:00
mathieu bultel
c6a45234e0 Add os_stack module for create, update and delete stack (#2002)
* Add os_stack module for create and delete stack

* Add ansible module for creating and deleting heat stack
* Parameters:
  - stack name
  - template
  - environment_files (list)
  - parameters (dict)
  - timeout
  - rollback
  - state: In a near futur I would like to improve
    this module by providing a way updating the stack
    if already exist. Shade doesn't offer this functionality
    AFAIK

* Add update stack feature

* Update added_version and return doc

* Add copyright for os_stack module

* Add wait user choice and minor fixes

* Remove Todo for Shade 1.8.0 and bad line example

* Add documentation for the return values

* Fix type on return value

* Fix yaml syntax

* Cast message to string instead

* add missing check mode
2016-07-11 13:36:00 -04:00
Patrick Ogenstad
8285bbda6a New module asa_command (#2306) 2016-07-11 12:55:45 -04:00
Patrick Ogenstad
200654e45d New module asa_config (#2307) 2016-07-11 12:55:03 -04:00
Patrick Ogenstad
0b9f3100b1 New module asa_template (#2308) 2016-07-11 12:54:31 -04:00
Patrick Ogenstad
a4207029de New module asa_acl (#2309) 2016-07-11 12:53:33 -04:00
René Moser
482b1a640e consul_acl: fix docs, arg_spec not matching docs (#2544) 2016-07-11 01:10:44 +02:00
Peter Oliver
92301f7451 Handle empty IPS publishers (#2047)
It turns out it's possible to set up a publisher with no URIs.  Handle
this gracefully.
2016-07-11 00:22:03 +02:00
Rene Moser
067b908415 Revert "travis: workaround false negative test failure (#2362)"
This reverts commit d056879088.
2016-07-10 10:42:39 +02:00
Kevin Borgolte
f1cdafae12 Fix Kubernetes API auth regression from 393e43b8 (#2503)
* Fix Kubernetes API auth regression from 393e43b8

Commit 393e43b8 renames url_username and url_password to username and
password, which breaks authentication to a Kubernetes API endpoint as
fetch_url() in ansible.module_utils.urls relies on url_username and
url_password being set.

* Add aliases for clustering/kubernetes.py

- username as alias for url_username
- password as alias for url_password
2016-07-10 10:17:31 +02:00
Nate Prewitt
a70cfeed15 removing | from description so docs render properly in RTD (#2533) 2016-07-09 20:30:56 +02:00
Robin Roth
3480d3d167 allow overwrite_multiple with more than 2 repos (#2481)
2.1 introduces overwrite_multiple, which can overwrite more than one
exisiting repo (with matching alias or URL). Allow more than 2 repos to
be overwritten, since openSuSE allow more than one repo with the same
URL if the alias is different.
2016-07-09 11:38:12 +02:00
René Moser
a99464f545 Merge pull request #2208 from hnakamur/lxd_container
Add lxd_container module
2016-07-09 10:41:25 +02:00
René Moser
c5201f5765 Merge pull request #2508 from eest/openbsd_pkg_branch
openbsd_pkg: Add support for "pkgname%branch" syntax. Fixes #97
2016-07-09 09:45:56 +02:00
Tim Rupp
b85303f023 Adds style conventions to bigip_pool (#2537)
A number of coding conventions have been adopted for new F5 modules
that are in development. To ensure common usage across the modules,
this module needed to be updated to reflect those conventions.

No functional code changes were made.
2016-07-09 09:21:10 +02:00
Rene Moser
f7b18a331b alternatives: add missing version_added and default doc
Also see #1175
2016-07-09 09:11:24 +02:00
Zack Lalanne
4756c71496 Fixed #632 added alternatives priority (#1175) 2016-07-09 09:08:44 +02:00
Matt Clay
618e740d52 Merge pull request #2539 from mattclay/module-tests
Add module integration tests on shippable.
2016-07-08 14:25:01 -07:00
Matt Clay
26af6c2d25 Add module integration tests on shippable. 2016-07-08 14:18:55 -07:00
Rene Moser
5a3dc054bd doc: remove common return values from various modules 2016-07-08 10:54:31 +02:00
Tim Rupp
188a01ff1a Adds style conventions to bigip_pool_member (#2535)
A number of coding conventions have been adopted for new F5 modules
that are in development. To ensure common usage across the modules,
this module needed to be updated to reflect those conventions.

No functional code changes were made.
2016-07-08 07:56:09 +02:00
John Kerkstra
d5ebe033e3 ec2_vpc_route_table: fixes: #2377 (#2421)
fixed fatal error when propagating_vgw_ids is None
2016-07-08 00:43:12 +02:00
Andreas Nafpliotis
47b9ede3be New module: vmware_local_users_manager (#2447)
* Add files via upload

* Add files via upload

* Fixed build errors

* Fixed some identation errors

* Documentation corrections

* Documentation updates
2016-07-08 00:39:59 +02:00
Blake Covarrubias
46e7d2716a Define external_ids ’type' in openvswitch_bridge (#2523)
The external_ids 'type' was not defined in the argument spec of
openvswitch_bridge. This caused 'external_ids' to be converted to a
string leading to an error when later calling exp_external_ids.items().
2016-07-08 00:33:24 +02:00
nitzmahone
8502d2595a fix azure_rm_deployment for rc5 2016-07-07 10:56:57 -07:00
jonathanbouvier
0f01acd6c4 added support for deleting nagios downtime (#2497) 2016-07-06 18:41:52 +02:00
Hiroaki Nakamura
c320caf285 Fix lxd_container and lxd_profile document to be rendered properly 2016-07-07 00:34:51 +09:00
Shinichi TAMURA
346ec3ce3c Added fallback for parse_error(string) on elasticsearch_plugin module. (#2517) 2016-07-06 07:20:23 +02:00
blinkiz
b7e21d161e Update openvswitch_port with tag feature (#2522)
* Update openvswitch_port with tag feature

Possibility to create a port with VLAN tag.

* Update openvswitch_port.py
2016-07-06 07:14:31 +02:00
Hiroaki Nakamura
afbaffa1c5 Change command to check python is installed 2016-07-05 21:37:41 +09:00
Hiroaki Nakamura
dcee274ebb Fix initializing err in _get_err_from_resp_json 2016-07-05 21:34:27 +09:00
Tim Rupp
e0b3e2f790 Adds coding conventions to the bigip_facts module (#2515)
A number of coding conventions have been adopted for new F5 modules
that are in development. To ensure common usage across the modules,
this module needed to be updated to reflect those conventions.

No functional code changes were made.
2016-07-03 18:19:53 +02:00
camradal
5588cc9c02 Add configuration options to VMWare portgroup (#2390)
* Add configuration options to VMWare portgroup

* Add version_added to newly added vmware portgroup params

* Update vmware_porgroup to use network_policy node for settings

* Update documentation for vmware_porgroup network policy
2016-07-03 10:49:42 +02:00
Abhijit Menon-Sen
dcb1ab6bed Merge pull request #1509 from hslee16/devel
adding public ip address to ec2_remote_facts
2016-07-02 15:02:23 +05:30
Patrik Lundin
1453d55c23 Improve debug log some more. 2016-07-01 18:38:19 +02:00
Hiroaki Nakamura
0140e50d55 Remove debug parameter and add logs in return object when invoked with -vvvv 2016-07-01 23:23:14 +09:00
Constantin
602915c264 Documented returned structure. (#2510) 2016-07-01 10:56:03 +02:00
Patrik Lundin
d55f22a2c6 Make fail messages all use lowercase messages. 2016-06-30 18:55:43 +02:00