Commit Graph

5453 Commits (91483bdd6b9a3dd0c0ad047a1209801068afcb27)
 

Author SHA1 Message Date
Brian Coca fa5cbcc17c Merge pull request #343 from cove/zabbix_screen
add zabbix_screen module
10 years ago
Brian Coca 4c01be7bf3 Merge pull request #344 from cove/zabbix_hostmacro
add zabbix_hostmacro module
same comments as for zabbix_host
10 years ago
Brian Coca 593a5ab83c Merge pull request #345 from cove/zabbix_host
add zabbix_host module
I've made some comments for future improvements, but still merging this now
10 years ago
Tyler Kellen c08ce5b30d correct version_added for known_hosts
It was added in 1.9, not 1.6.
10 years ago
Cove Schneider 092cb5b4cd add zabbix_screen 10 years ago
Cove Schneider d0256c593a add zabbix_hostmacro 10 years ago
Cove Schneider 3b54e7b00e add zabbix_host 10 years ago
Toshio Kuratomi 400166a655 Port is an integer so use arg_spec to enforce that. 10 years ago
Toshio Kuratomi 2b192c7f8e remove non-ascii quotes from message string
Fixes https://github.com/ansible/ansible/pull/8564
10 years ago
Brian Coca 7a006c81bc Merge pull request #77 from j2sol/bigip_node_disable
Add enabled/disabled support to bigip_node
10 years ago
Jesse Keating f86ce495c7 Add enabled/disabled support to bigip_node
This allows one to enable or disable a node, useful for when doing
maintenance on a node to prevent connections from being attempted to it.

This will completely disable the node for any pool it might be in.
10 years ago
Brian Coca 520f410257 moved cloudtrail to amazon subdir 10 years ago
Brian Coca 9544a5f231 Merge pull request #90 from stansonhealth/devel
add cloudtrail module
10 years ago
tedder 61114cd08a Handful of changes after bcoca's code review:
* update expected inclusion version
* fix consistency on enabled/absent (now enabled/disabled)
* safely import boto per now style of single-exit and proper JSON
* use new `required_together` module style
10 years ago
tedder 06939a8651 add cloudtrail module
Cloudtrail is the AWS auditing configuration. It's fairly simple, but also very important to configuration management/devops/security to ensure it remains enabled. That's why I created it as a module.
10 years ago
Brian Coca 2438b74ca8 remove x bit 10 years ago
Brian Coca dd1508d572 moved to 10 years ago
Brian Coca f15328d6f6 Merge pull request #89 from chrisisbeef/devel
Introduce a download_artifact plugin to resolve maven artifacts
10 years ago
Brian Coca 3f247e2d78 Merge pull request #313 from DavidWittman/12-alternatives-fixes
Fix multiple issues with alternatives module
10 years ago
Brian Coca 09fc1eefe5 Merge pull request #114 from rndmh3ro/patch-1
Added documentation and example for port ranges.
10 years ago
Brian Coca 39cb571064 Merge pull request #94 from komuta/clean-composer-options
Unify composer options parsing
10 years ago
Brian Coca 8e1024ff30 updated pushover version added 10 years ago
Brian Coca 6dc9f4bdba Merge pull request #78 from weaselkeeper/devel
Pushover notification module
10 years ago
Brian Coca 671317e0e1 added version added to new color option 10 years ago
Phillip Holmes d7030e9604 added color bar option to Slack module
This update will allow people to add a color bar at the front of a
Slack notification using the default 3 colors by name Slack specify
(good, warning, danger).

If no color is specified, or the default is used (normal) then no bar
will be added.

Description and example also added in this update.

Color bars are added by using the attachments json object inside the
payload - this is a very simplistic implementation as using custom
colors or adding titles or other formatting are not included in this
update and if needed I’m sure somebody else can spend the time to add
them later…

Tested with ansible 1.7
10 years ago
Brian Coca ed3b97074f Merge pull request #332 from AdmiralNemo/lvol-no-prompt
system/lvol: Suppress prompts from lvcreate
10 years ago
Brian Coca 2652d5daf6 Merge pull request #329 from uxp/patch-1
Fix typo in hipchat notification failure message.
10 years ago
Brian Coca 98683ebb18 Merge pull request #330 from bhcopeland/devel
Added example block for the "SMTP username and password"
10 years ago
Brian Coca 5293f452b5 corrected version added 10 years ago
Brian Coca 4bf87a0ab5 corrected 'version added' 10 years ago
Brian Coca fe840ea8e6 Merge pull request #172 from dareko/devel
New modules for the HP Vertica Analytics Database
10 years ago
Brian Coca eef2a95f96 Merge pull request #334 from msabramo/bigip_disable_ssl_cert_verification
Add `verify` param; set false to ignore SSL cert
10 years ago
Brian Coca cf9a243cd7 added missing __init__.py 10 years ago
Dariusz Owczarek 09dfd42d50 new vertica modules 10 years ago
Marc Abramowitz 513724c0a5 Add `validate_certs` param to bigip_* modules
Ignoring SSL cert verification may be necessary when testing with a
server that has a self-signed certificate.

See
https://github.com/ansible/ansible-modules-extras/pull/288#issuecomment-85196736
10 years ago
Dustin C. Hatch f8d04bec1b system/lvol: Suppress prompts from lvcreate
Occasionally, `lvcreate` will prompt on stdin for confirmation. In
particular, this may happen when the volume is being created close to
the location on disk where another volume existed previously. When this
happens, Ansible will hang indefinitely with no indication of the
problem. To work prevent this problem, the `--yes` command-line argument
can be passed to `lvcreate`, which will instruct it not to prompt.

Signed-off-by: Dustin C. Hatch <dustin@hatch.name>
10 years ago
Sébastien Gross 08702e44bf [patch] Update documentation for src parameter. 10 years ago
Sébastien Gross 84eb895a06 [patch] Make sure the absolute patch file is passed to the patch command.
According the patch(1) manpage:
The --directory option change to the directory dir immediately, before
doing anything else.

Thus if file is not relative to dir and making file absolute ensure that
patch will find it.
10 years ago
Sébastien Gross b68c136010 [patch] Make sure patch command is found on remote system. 10 years ago
Ben Copeland b01c2cee66 Added example block for the "SMTP username and password" 10 years ago
HPLogsdon c622c54e9e Fix typo in hipchat notification failure message.
Wish it could be more substantial, but alas, it's just a typo in a string.
10 years ago
Kevin Carter 24cfcd2497 Updated lxc_container module to fix option parsing
The option parsing object within the module was performing a split
on an '=' sign and assuming that there would only ever be one '='
in a user provided option. Sadly, the assumption is incorrect and
the list comprehension that is building the options list needs to
be set to split on the first occurrence of an '=' sign in a given
option string. This commit adds the required change to make it
possible for options to contain additional '=' signs and be handled
correctly.
10 years ago
Toshio Kuratomi cb848fcd9e Make our regex match the homebrew tap upstream regex.
Fixes #312
Fixes #297
10 years ago
David Wittman 34e7d9c938 Fix multiple issues with alternatives module
- Changes are no longer erroneously reported on RHEL (#12)
 - Adding new link groups on Debian works again.
   - This was broken in a previous commit by assuming the OS was RHEL
     if `update-alternatives --query <name>` had a return code of 2
 - Prefer `--display` over `--query` for determining available
   alternatives
   - --display is more distro-agnostic and simplifies the code
 - Fix missing `msg=` in `fail_json` call when `link` is missing
 - Document that `link` is required on RHEL-based distros

Tested on Ubuntu 12.04+ and CentOS 6/7
10 years ago
Brian Coca 696bc60caa fixed doc issue (missing description and corrected version added) 10 years ago
Toshio Kuratomi 8baba98ebe Don't know why but the 1.8.x branch didn't include the commit for crypttab.
Update documentation to show it is new in 1.9 as a result of that
oversight.
10 years ago
Brian Coca 9b5d565a79 Merge pull request #307 from nailgun/patch-1
gluster_volume: fixes, new "force" option
10 years ago
Dmitry Bashkatov 19d51a51db gluster_volume: remove redundant code 10 years ago
Dmitry Bashkatov 26c2080dcf gluster_volume: use force option during add-brick 10 years ago
Dmitry Bashkatov c6448660a3 gluster_volume: fixes, new "force" option 10 years ago