Commit Graph

235 Commits (31a027e2cd68f78223d170fb82328f0de3b1abe4)

Author SHA1 Message Date
Tim Rupp be367cc2de Bugfixes and code style (#2627)
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.

Additionally, this patch fixes a couple bugs in the module that were
preventing it from being idempotent.
8 years ago
Loïc 8449fb3c90 Fix argument type to bool. By default shutdown_sessions is always true then it should'nt. (#2596) 8 years ago
Donovan Jones fd235289dd Update comment for ttl parameter to indicate 2-119 seconds is invalid (#2546) 8 years ago
Tim Rupp 277a2b5df1 Adds style conventions to bigip_monitor_http (#2564)
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.
8 years ago
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
8 years ago
Patrick Ogenstad 8285bbda6a New module asa_command (#2306) 8 years ago
Patrick Ogenstad 200654e45d New module asa_config (#2307) 8 years ago
Patrick Ogenstad 0b9f3100b1 New module asa_template (#2308) 8 years ago
Patrick Ogenstad a4207029de New module asa_acl (#2309) 8 years ago
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.
9 years ago
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.
9 years ago
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().
9 years ago
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
9 years ago
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.
9 years ago
Tim Rupp 4bbbad6378 Adds coding conventions for the bigip-virtual-server module (#2473)
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.
9 years ago
Michael Grüner 4debfcc241 cloudflare_dns: Improve error handling (#2470)
Use the new "body" field of the info dict in case of a HTTPError.
9 years ago
Tim Rupp 9d37820b08 Adds server port argument to legacy modules (#2444)
This patch adds support for the server_port module. It
additionally updates the documentation in the module for
it.

The changes were tested in the f5-ansible repository to
ensure no breaking changes were made. This argument allows
modules to be used on BIG-IPs that are listening on
non-standard ports.
9 years ago
Gerik Bonaert df8d41ba0f Define 'type' in argument_spec of openvswitch_port (#2355)
The external_ids 'type' was not defined in the argument spec of
openvswitch_port. This lead 'external_ids' to be converted to a
string, when the value was not defined. Further down the code this
was leading to an exception in some cases. By defining the type
all is right.
9 years ago
Leandro Lisboa Penz 4497cb4874 netconf module with edit-config operation (#2103)
* netconf module with edit-config operation
9 years ago
Gerrit Germis a003b8d081 fail when backend host is not found (#1385) 9 years ago
Adrian Likins 1e3c0ba1cf Fix bad merge of #555 (mv bigip_gtm_virtual_server) (#2302)
f5/ was the wrong directory. Move it to network/f5
and remove f5/.
9 years ago
Orion Poplawski 14a0b7b9b7 Fix gw4/gw6 typo (#1841) 9 years ago
David Keijser 7b7af3bcf9 Make it possible to manage rules of f5 vs (#1821) 9 years ago
Ben Knight 239c60ec13 Add reselect_tries option to big_pool module (#2156) 9 years ago
sebfere 85feaa6409 add monitor configuration to module "bigip_node" (#2054)
(squashed merge commits w/ new github fun, let's see if it worked)
9 years ago
Tim Rupp c400598332 Reverse the unpack list operation
Instead of doing an unpack, deliberately specify which parameters you
want to use. This allows us to flexibly add more parameters to the
f5_argument_spec without having to rewrite all the modules that use
it.

Functionally this commit changes nothing, it just provides for a
different way of accessing the parameters to the module
9 years ago
Tim Rupp 86f08bfcda Adds the __main__ conditional check (#2098)
As is done in other ansible modules, this adds the __main__ check
to the module so that the module code itself can be used as a library.
For instance, when testing the code.
9 years ago
Matt Hite c58f5d2137 Fixes issue #1992 -- fixes issue adding and deleting pools (#1994) 9 years ago
Matt Hite 0405c54dba New preserve_node parameter to skip unreferenced node removal 9 years ago
René Moser 1989b8ba57 Merge pull request #1931 from mhite/bigip_pool_member_port_0
Allow port 0 as a valid pool member port
9 years ago
Matt Hite 8a27e785db Allow port 0 as a valid pool member port 9 years ago
Jason Witkowski b7dad3494e The current module supporting F5 BIGIP pool creation does not support a setup where the port number must be zero to signify the pool will listen on multiple ports. This change implements that functionality and fixes an illogical conditional. 9 years ago
Michael Gruener 46cebbb83d cloudflare_dns: Cosmetic cleanup 9 years ago
Michael Gruener 9db7e2a455 cloudflare_dns: normalize return value and docs 9 years ago
Michael Gruener 82989ce473 cloudflare_dns: Cleanup record update handling 9 years ago
Michael Gruener 71961134be cloudflare_dns: Allow CNAME content updates 9 years ago
Michael Gruener 396d44c4b3 cloudflare_dns: Fix solo SRV record creation 9 years ago
Michael Gruener 7477fe5141 cloudflare_dns: Fix SRV record idempotency 9 years ago
James Slagle 7dae3faf0f Add quotes and equals for set option documentation
set is an option for the openvswitch_port module, however the documentation
example omitted the equals sign and quotes around the option value.
9 years ago
Michael Gruener 879410a94e cloudflare_dns: Fix wrong variable name 9 years ago
Rene Moser 233869abc9 cloudflare_dns: minor code improvments
Tweaked some things on top of the well done PR #1768

- json import
- fix expetion handling
- fix indentation
9 years ago
René Moser 9811210c2c Merge pull request #1768 from mgruener/cloudflare_dns
Module to manage Cloudflare DNS records
9 years ago
Michael Gruener 8b63aea89b Module to manage Cloudflare DNS records 9 years ago
René Moser 08deed6f6c Merge pull request #1801 from RickyCook/fix-dnsimple-fail
New json_fail syntax for dnsimple module
9 years ago
mxpt user a7faa0124f Fixing typo in bigip_monitors
Correcting set_template_int_property to set_template_integer_property
9 years ago
Ricky Cook ce68b12382 New json_fail syntax for dnsimple module 9 years ago
Dag Wieers da8c9b56a9 Fix typo 9 years ago
Brian Coca 1a00da7c49 minor docfixes 9 years ago
Tim Rupp 56a517b054 Fixes missing validate_certs parameter
The bigip_api method was changed in the module_utils function definition
to include the validate_certs option but the bigip_virtual_server module
was not updated accordingly. This patch updates the method so that the
error message below is not returned to the user

received exception: bigip_api() takes exactly 4 arguments (3 given)
9 years ago
Toshio Kuratomi 36be779888 Remove duplicate documentation fields 9 years ago