Commit Graph

23065 Commits (9c6db69827691d0112f2f701513f9546387025f6)
 

Author SHA1 Message Date
Jan Duzinkiewicz 9c6db69827 forcing git fetch if sha1 are equal between repos but branch exists only at remote
Add an explanatory comment to the code
8 years ago
Brian Coca 3afaa2fef4 really fixed the doc formatting 8 years ago
Brian Coca 1fe3387971 crrected version added 8 years ago
Brian Coca e2062c44d9 made note about choice availability in ansible ver 8 years ago
Brian Coca 0ca9356675 added versions note in description for new choice 8 years ago
Brian Coca f5ddbd5c49 fixed win_feature docs
added version_added for source and fixed some yaml parsing
8 years ago
Pavel Derendyaev 3129154a2a Add "timeout" option to Docker module 8 years ago
Trond Hindenes abcae97422 update doc 8 years ago
Trond Hindenes 37a24cc1b1 bugfix win_feature.ps1 8 years ago
Trond Hindenes 21b79123a4 Add source as optional parameter 8 years ago
KIKUCHI Koichiro 2974358b2b Add check_mode support to mysql_user. 8 years ago
Arata Notsu a9f23ac54f apt: export env vars before run dpkg
Without this change, some trouble may occur when "deb" parameter
is used as env vars controlling dpkg are not set. For example,
installing a package that requires user input will never end since
DEBIAN_FRONTEND=noninteractive is not set.

So export env vars in APT_ENV_VARS before run dpkg, like in cases
using apt-get/aptitude.
8 years ago
Jonathan Mainguy 47d0719cfe Fix bad merge 8 years ago
Brian Coca 288a5c9a77 adds diff info for file info 8 years ago
nitzmahone 60ca6e2f85 fix win_file to stop on errors 8 years ago
Jon Hadfield d0e37fa542 return allocation id for vpc address. 8 years ago
Dmitry Labutin b20066ff8e Fix issue #2721: os_object parameters and docs don't align (file/filename) 8 years ago
Dmitry Labutin 60b1273d55 Github uses both HTTP and HTTPS protocols 8 years ago
Ben Visser a01fe88263 staging that num_nodes is required when state=present 8 years ago
Brian Coca 1367e73c94 be smarter when dealing with policy_json input
Now module will assume that if the argument is a string it is already formated as json
and will only try to convert non strings into json string.
Also removed unused 'msg' var declarations and the ifs that set them
fixes #2009
8 years ago
Vic Iglesias 353db36515 Update GCE PEM deprecation text and examples 8 years ago
Barnaby Court 73d47ec7a4 add no_log to the password parameter 8 years ago
Charles Paul 980691338a adding no_log to password 8 years ago
Michael Scherer d321670b38 Add more precise documentation on the requirements parameter
Fix #427
8 years ago
Michael Scherer 83b45ae047 Fix doc inconsistency (#2630) 8 years ago
Vic Iglesias 612d9c3e92 Use credentials_file for GCE module auth config 8 years ago
tksarah 7ad225eedd Edit azure.py 8 years ago
Etherdaemon eba78d08f9 Update to wait and wait_timeout with a maximum of 10 minutes timeout 8 years ago
luto 610de975e6 vsphere_guest: when creating a guest, gather facts about it *before* disconnect 8 years ago
Etherdaemon cd3f306518 Proposing a wait_for function to ensure elb has been successfully removed 8 years ago
Josh Rendek bddcf737c9 Fix quote on grants of more than one word
Fixed a quote location on the grants composed of more than one word. Current docs will raise an error with a invalid privilege command.
8 years ago
Mike Buzzetti f20b09e2ec Add evaluate taget health for alias based records 8 years ago
sebi 76af56eaca added unless stopped option 8 years ago
Martin Matuska 4cce825ae9 rhn_register: add sslcacert and systemorgid options 8 years ago
Brian Coca 7d6c704404 fix bad linebreak 8 years ago
Michael Scherer 69036826a8 Fix #2629, replace choices=BOOLEANS by type='bool' 8 years ago
Alexander Gubin b0d54092ee command: Add warnings for dnf and zypper 8 years ago
luto d20c4368d2 vsphere_guest: add power status to facts 8 years ago
stephane 40e7ed9518 Add support for pip force-reinstall
The pip command allows a user to force reinstallation,
but the module doesn't currently support it. Add
"force-reinstall" as a possible state.
8 years ago
Manuel Tiago Pereira 057cbacf8a Add support for legacy registries to pull_image().
Since we now have several exceptions to the assumption that the
result of the pull would be on the last status line returned by
docker-py's pull(), I've changed the function so that it looks
through the status lines and returns what if finds on it.
Despite the repeated `break`s, the code seems simpler and a little
more coherent like this. From what I've checked using
`https://github.com/jlafon/ansible-profile`, the execution time is
mostly the same.
8 years ago
Sam Thursfield eba767902c os_server: Add some error checking for the 'nics' parameter
If this parameter was not of the right type, the module would fail with a
traceback, with a "AttributeError: 'str' object has no attribute 'get'"
exception.

It now gives a proper error message on type errors.
8 years ago
nitzmahone 317ea13759 win_get_url doc/strict-mode fixes
plus cleaning up from bad merge
8 years ago
nitzmahone feb077261e minor win_get_url doc update 8 years ago
T.Kuramochi dfda2e9f57 Add HTTP Proxy options
Update a document file for win_get_url.ps1.

Update add a prefix proxy_ for this variables

Update a document file for win_get_url.ps1.

Update win_get_url.ps1 20150907
8 years ago
Toshio Kuratomi 7a492764d0 Fix up documentation 8 years ago
Toshio Kuratomi 4fa9de5af3 entrypoint feature added in 2.1 8 years ago
Toshio Kuratomi eb65f819f5 labels is actually not aded in 1.9.4 but in 2.1 8 years ago
Andrew Pashkin c811a3f4bc Add 'entrypoint' parameter to Docker module 8 years ago
Andrew Pashkin 8342397427 Harden matching running containers by "command" in the Docker module
Before this patch:

  - Command was matched if 'Command' field of docker-py
    representation of Docker container ends with 'command' passed
    to Ansible docker module by user.
  - That can give false positives and false negatives.
  - For example:
      a) If 'command' was set up with more than one spaces,
         like 'command=sleep  123', it would be never matched again
         with a container(s) launched by this task.
         Because after launching, command would be normalized and
         appear, in docker-py API call, just as 'sleep 123' - with one
         space. This is false negative case.
      b) If 'entrypoint + command = command', for example
         'sleep + 123 = sleep 123', module would give false positive
         match.

This patch fixes it, by making matching more explicit - against
'Config'->Cmd' field of 'docker inspect' output, provided by docker-py
API and with proper normalization of user input by splitting it to
tokens with 'shlex.split()'.
8 years ago
Omar Khan 369fe78c60 Add stop_timeout option to docker module 8 years ago