Commit Graph

8155 Commits (400484f69fd475beb0a2b32c2d60b89b3e2d9067)
 

Author SHA1 Message Date
Toshio Kuratomi 148a0ddabf Merge pull request #2228 from abadger/ziploader-constants
the ansible version constant is now in a different place
9 years ago
Pavel Samokha a0566037b4 iptables module - icmp-type better doc style 9 years ago
Pavel Samokha 7092118119 fix icmp-type 9 years ago
Pavel Samokha 747f6f6736 iptables module - add icmp_type 9 years ago
Yannig bbd53572af New lvol option: shrink. (#2135)
If shrink is set to false and size is lower than current lv size, dont try to shrink logical volume.
9 years ago
Toshio Kuratomi a12696d598 the ansible version constant is now in a different place 9 years ago
Ian Levesque cd03f10b9c Fix session-based kv acquire/release (#2181)
* Fix session-based kv acquire/release

* add example of using session in doc
9 years ago
Rob 9677961b8c Added better example for boto3 exception handling (#2204) 9 years ago
Michael Baydoun 2665acb257 created ec2_customer_gateway module (#1868) 9 years ago
Ash Berlin d00d0d0846 Add missing urlparse import to s3_bucket (#2110)
This was triggered when S3_URL environment variable was set.
9 years ago
Michael Scherer 816673dd6f Use path type for blockinfile 'dest' argument (#2192) 9 years ago
Adrian Likins ba4a7a7aa9 Merge pull request #2193 from Penguin2600/patch-1
high_flap_threshold documentation correction
9 years ago
René Moser eab4b6a3e9 cs_loadbalancer_rule_member: doc fixes (#2184) 9 years ago
Charles V Bock 371c411ac3 high_flap_threshold documentation correction
Changing description of high_flap_threshold to properly reflect its function.
9 years ago
Nik LaBelle bb965eebee change netif type to dict and update example (#2187) 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
Rene Moser 5e008b928e
cloudstack: new module cs_router 9 years ago
René Moser 23e6875430 Merge pull request #2186 from mscherer/fix_know_host
Use type='path' rather than str, so path is expanded correctly
9 years ago
Michael Scherer 557d37d3f1 Use type='path' rather than str, so path is expanded correctly 9 years ago
Matt Martz a4b631522d Merge pull request #2179 from sivel/ansible-testing-exclusions
Ansible testing exclusions
9 years ago
Matt Martz 61b9b48c60 No exclusions necessary 9 years ago
Matt Martz 081845b353 Fix HAS_BOTO fail_json call for ec2_ami_copy 9 years ago
Matt Martz b4de5ec208 Reduce exclusions for ansible-testing due to fixes and changes in ansible-testing 9 years ago
Kamil Szczygiel 431591c2b4 influxdb retention policy module 9 years ago
Michael Scherer d1b16cd007 Use type='path' for dest (#2175) 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
nitzmahone 2e09202aae back version added to 2.1 9 years ago
Kamil Szczygiel f193c1b96a influxdb database module 9 years ago
Rob 959bbfbf53 Add secondary IP support and allow specifying sec groups by name (#2161) 9 years ago
Maxime Montinet 77eee2b6ca rabbitmq_user: Properly initialize _permissions (#2163)
Fixes #2162
9 years ago
René Moser 72a4185edc travis: exlcude cs_template to fix build failure (#2168) 9 years ago
Lakshmi Balu cfc6d1cf62 Update vmware_datacenter.py (#2164)
Fixed the syntac issue variable references before definiton
9 years ago
René Moser 46fb2f8d14 cs_template: fix missing docs (#2165) 9 years ago
Rene Moser 806ebef383 homebrew_cask: fix doc version_added for install_options
See #2086
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
Robin Roth bb68df525c refactor zypper module
* refactor zypper module

Cleanup:
* remove mention of old_zypper (no longer supported)
  * requirement goes up to zypper 1.0, SLES 11.0, openSUSE 11.1
  * allows to use newer features (xml output)
  * already done for zypper_repository
* use zypper instead of rpm to get old version information, based on work by @jasonmader
* don't use rpm, zypper can do everything itself
* run zypper only twice, first to determine current state, then to apply changes

New features:
* determine change by parsing zypper xmlout
* determine failure by checking return code
* allow simulataneous installation/removal of packages (using '-' and '+' prefix)
  * allows to swap out alternatives without removing packages depending
    on them
* implement checkmode, using zypper --dry-run
* implement diffmode
* implement 'name=* state=latest' and 'name=* state=latest type=patch'
* add force parameter, handed to zypper to allow downgrade or change of vendor/architecture

Fixes/Replaces:
* fixes #1627, give changed=False on installed patches
* fixes #2094, handling URLs for packages
* fixes #1461, fixes #546, allow state=latest name='*'
* fixes #299, changed=False on second install, actually this was fixed earlier, but it is explicitly tested now
* fixes #1824, add type=application
* fixes #1256, install rpm from path, this is done by passing URLs and paths directly to zypper

* fix typo in package_update_all

* minor fixes

* remove commented code block
* bump version added to 2.2
* deal with zypper return codes 103 and 106
9 years ago
René Moser f2383fe0ac Merge pull request #2086 from indrajitr/homebrew_cask_install_options
Adding install_options to homebrew_cask (see #544)
9 years ago
Rob 47fddc83be Added doc for new get_ec2_security_group_ids_from_names function in m… 9 years ago
Gonçalo Luiz 336d475746 fixed not resolving latest to snapshot for MD5 check when the file ex… 9 years ago
Adrian Likins 9d705a4208 Expect 204 status when using hipchat v2 api.
When posting to the room notication api with hipchat
v2 api, the expected return code is 204, as per:
https://www.hipchat.com/docs/apiv2/method/send_room_notification

fixes #2143
9 years ago
René Moser eab5892944 Merge pull request #1867 from Censio/rhunter-monit-startup
monit startup fix
9 years ago
Toshio Kuratomi 675d778b50 Fix documentation 9 years ago
Michael Scherer 7fd4180857 Fix arguments and docs (#2147)
- oauthkey shouldn't be logged
- action should be restricted and checked and the
doc should correspond to the code
9 years ago
Kevin Hildebrand 9f2bc2853d Fix the interface handling code to allow permanent and non-permanent operations.
Also avoid using add_interface because it breaks in cases where the interface is already bound to a different zone.
9 years ago
krzwalko 12f1c85aa3 Fix datacenter_name and cluster_name module params (#2142) 9 years ago
Rudi Meyer 28ae506c12 Jira will return a HTTP status code 201 on some actions, fx. 'comment'. (#2115) 9 years ago
Jordan Cohen c0013af14c doc update to demostrate message template vars 9 years ago
Toshio Kuratomi 1846de2809 Switch blockinfile to using the latest best way to get ansible version 9 years ago
René Moser 3a7e4b5834 readme: add build state image from travis 9 years ago