Mick Bass
2d189f0d19
add retry with exponential backoff when we receive throttling error code from cloudformation
10 years ago
Toshio Kuratomi
170457413d
Cleanup the old apt compatibility changes
10 years ago
Toshio Kuratomi
8ce5720bb0
Merge pull request #564 from FabioBatSilva/devel
...
Fix compatibility issues with python-apt < 0.7.9
10 years ago
Mick Bass
e8a56653c1
Add support for AWS Security Token Service (temporary credentials) to all AWS cloud modules.
10 years ago
Toshio Kuratomi
925c9ab42d
Merge pull request #561 from weitzj/bugfix/docker-extra-params
...
Fixes invalid dictionary access.
10 years ago
fabios
a08165ca2e
use low-level apt_pkg.Package
10 years ago
FabioBatSilva
55b85ddc46
fix compatibility issues with python-apt < 0.7.9
10 years ago
Brian Coca
1e8abd2594
Merge pull request #562 from phips/fix_vsphere_folder
...
vsphere_guest fix for KeyError: folder message
10 years ago
Brian Coca
9d196f7b47
Merge pull request #535 from bcoca/revert_win_mods
...
Revert "Merge pull request #384
10 years ago
Mark Phillips
8ede9de895
vsphere_guest fix for KeyError: folder message
10 years ago
Jan Weitz
ebf9b8c6e2
Fixes invalid dictionary access.
10 years ago
Toshio Kuratomi
55b92a46db
Merge pull request #560 from weitzj/bugfix/dockerpy-versioncheck
...
Fixes version check for docker-py
10 years ago
Jan Weitz
82601fdc54
Fixes version check for docker-py
10 years ago
Michael J. Schultz
b894bc2b77
Build the db connection on `"postgres"` instead of `"template1"`
...
According to the postgresql docs[1], you should not have a connection with
`"template1"` when copying multiple databases.
[1]: http://www.postgresql.org/docs/9.1/static/manage-ag-templatedbs.html
10 years ago
Brian Coca
a2c1daf00e
Merge pull request #548 from mavit/solaris-user-groups
...
Fix appending to a user's group on Solaris, someone thought it was a list but it is really a set.
10 years ago
Brian Coca
62a53b1209
Merge pull request #541 from bcoca/cloudformation_china
...
update to use connect_to_region to avoid errors with china
10 years ago
Jeff Gonzalez
54214f83b5
Added ability to use url as key source
10 years ago
Toshio Kuratomi
8f6ae92cf8
git fetch --tags overwrites normal fetching with git < 1.8.x so do a normal fetch followed by using the refspec format for fetching tags
10 years ago
Toshio Kuratomi
8a03af6608
Fix typo in git refspec code. Change lists to tuples
10 years ago
Toshio Kuratomi
2cbe13a21d
Merge pull request #371 from rohanpm/git_refspec
...
git: add 'refspec' argument
10 years ago
Brian Coca
0ab5682b87
Merge pull request #260 from willthames/aws_frankfurt
...
Added better region handling and enabled eu-central-1, leaving centralizing the list on these modules to a subsequent patch
10 years ago
Peter Oliver
18c429d016
Fix appending to a user's group on Solaris
...
Without this change, you get:
AttributeError: 'set' object has no attribute 'extend'
Tested on a Solaris 11.2 client with the included Python 2.6.8.
10 years ago
Toshio Kuratomi
ee324fc3ad
Make documentation clear about update=no vs clone=no
10 years ago
Chris Church
0a297e54ba
Change version added in win_user docs to 1.9 for updates that didn't make it into 1.8.
10 years ago
Rohan McGovern
cf85047284
git: add 'refspec' argument
...
This argument may be used to fetch additional refs beyond the default
refs/heads/* and refs/tags/*. Checking out GitHub pull requests or Gerrit
patch sets are two examples where this is useful.
Without this, specifying version=<sha1> with a SHA1 unreachable from any
tag or branch can't work.
10 years ago
Rohan McGovern
c242de1a39
git: clean up "fetch" method
...
De-duplicate repetitive code checking the exit code.
Include the stdout/stderr of the failed process in all cases.
Remove the returned values because no caller uses them.
Combine git commands where possible. There is no need to fetch branches
and tags as two separate operations.
10 years ago
Toshio Kuratomi
c4f9366e91
Newstyle class
10 years ago
Toshio Kuratomi
f65d9ab793
Make insecure_registry feature version check against the client API
10 years ago
Maksim Losev
4172d445d3
Add insecure_registry to docker-py pull method
...
Starting from docker-py>=0.5.0 it is impossible to work with private registries based on HTTP.
So we need additional parameter to allow pull from insecure registry
Related to ansible/ansible#9111
10 years ago
Toshio Kuratomi
fa0fa9d221
Make docker ver checks issue failures rather than silently ignoring
...
Also:
* make client version checks robust for two digit version pieces and
alpha versions
* consolidate version checking code
10 years ago
Toshio Kuratomi
5de8f11730
Merge pull request #199 from gottwald/docker-restart-policy
...
Add support for new docker restart policies
10 years ago
Ingo Gottwald
80d45c78a3
Add support for new docker restart policies
10 years ago
Brian Coca
d564569910
update to use connect_to_region to avoid errors with china
10 years ago
Brian Coca
8e5a849c66
Merge pull request #3 from atlashealth/ec2_vol_ssd_ebs
...
Ability to specify new SSD EBS option
10 years ago
Brian Coca
3ee8e2840f
Merge pull request #6 from willthames/ec2_snapshot_remove
...
Added the ability to remove snapshots
10 years ago
Brian Coca
978204aaa2
Merge pull request #496 from haraldsk/devel
...
add support for stack policies in cloudformation
10 years ago
Toshio Kuratomi
dfe7f6c6d6
Probably would make clone a 1.9 feature rather than 1.8.3
10 years ago
Toshio Kuratomi
b650ad1671
Make git's update parameter revert to its old behaviour and add new clone parameter to take its place.
...
Fixes #426
Fixes https://github.com/ansible/ansible/issues/8630
10 years ago
Brian Coca
e39260d14c
Merge pull request #531 from kalefranz/Issue529
...
fixes #529 ec2_group module bug
10 years ago
zitterbacke
22e1b26bea
fix uri modul for JSON-escape quotation marks
...
consider the following response body (content) of a REST/JSON webservice containing escaped quotation marks:
```json
{ "key": "\"works\"" }
```
decoding this string not as raw will lose the backslash as JSON escape. later json.loads will fail to parse.
Inspired by [this thread](https://groups.google.com/forum/#!topic/ansible-project/kymtiloDme4 ) on the mailing list and the following python shell code:
```python
import json
string=r'{ "key": "\"works\"" }'
json.loads(string)
json.loads(string.decode('raw_unicode_escape'))
json.loads(string.decode('unicode_escape'))
```
10 years ago
Brian Coca
a942e5f853
Revert "Merge pull request #384 from jhawkesworth/win_copy_file_template_ansible_modules_core_1"
...
I missed some discussion in devel, these need more work before inclusion
This reverts commit 58bfebb047
, reversing
changes made to 27dee77ca0
.
10 years ago
Kale Franz
73172fae47
#531 correction
...
correct list comprehension for older versions of python (back to python 2.4)
10 years ago
Kale Franz
e174c9b474
fixes #529 ec2_group module bug
10 years ago
Toshio Kuratomi
443951ce82
Merge pull request #524 from zitterbacke/patch-1
...
re-enable AIX password setting
10 years ago
Toshio Kuratomi
c853bb5a0f
Merge pull request #518 from likwid/devel
...
Fixed formatting in cloudformation example
10 years ago
Toshio Kuratomi
c5f7fc93b2
Merge pull request #514 from jbradberry/issue9546
...
Fix breakage in lineinfile check mode when target file does not exist.
10 years ago
Toshio Kuratomi
67aeab9576
Merge pull request #512 from mscherer/fix_438
...
Revert commit cbc417c
, as the code is broken, see #438
10 years ago
Richard Lander
73e32db22f
password required
10 years ago
Toshio Kuratomi
b1605ae6b5
Merge pull request #505 from sysadmin75/9518
...
Fixes #9518 - "file state=directory" silently skips if it's currently a ...
10 years ago
Toshio Kuratomi
9c6826e928
Add text/json as a mimetype to try deserializing
...
Fixes #503
10 years ago