- 11 Aug, 2013 13 commits
-
-
Michael DeHaan committed
-
Add openshift inventory plugin
Michael DeHaan committed -
Conflicts: CHANGELOG.md
Michael DeHaan committed -
Michael DeHaan committed
-
Added git disclaimer about dealing with ssh host checking
Michael DeHaan committed -
update docsite about new variable inventory_file
Michael DeHaan committed -
fix inventory.basedir is not absolute path when hostfile is startswith "./"
Michael DeHaan committed -
Fix some typos discovered during casual reading
Michael DeHaan committed -
Brings postgresql_db examples in line with documentation.
Michael DeHaan committed -
Abhijit Menon-Sen committed
-
René Moser committed
-
As of now, the documentation lists a parameter as "name", whereas the examples use a parameter called "db". This brings them in line.
Dan Robinson committed -
ftao committed
-
- 10 Aug, 2013 24 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
git://github.com/tima/ansibleMichael DeHaan committed
-
forking least possible
Michael DeHaan committed -
Michael DeHaan committed
-
git://github.com/psvo/ansibleMichael DeHaan committed
-
git://github.com/bcoca/ansibleMichael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
git://github.com/hura/ansibleMichael DeHaan committed
-
Michael Vogt committed
-
digital_ocean #3438: use get instead of [] to prevent KeyError
Michael DeHaan committed -
Michael DeHaan committed
-
closes #3518
Serge van Ginderachter committed -
Modified playbooks2.rst to include conditional boolean example.
Michael DeHaan committed -
Fix traceback when openstack do not have OS-EXT-IPS:type attached to add...
Michael DeHaan committed -
Michael DeHaan committed
-
René Moser committed
-
Timothy Appnel committed
-
Straighten out local-remote-delegate logic in rsync action module. Force set delegate to local if one is not defined.
Timothy Appnel committed -
Timothy Appnel committed
-
Timothy Appnel committed
-
- 09 Aug, 2013 3 commits
-
-
failed: [127.0.0.1] => {"failed": true, "parsed": false} invalid output was: Traceback (most recent call last): File "/tmp/ansible-1376083321.99-111209413777779/nova_compute", line 1176, in <module> main() File "/tmp/ansible-1376083321.99-111209413777779/nova_compute", line 239, in main _get_server_state(module, nova) File "/tmp/ansible-1376083321.99-111209413777779/nova_compute", line 198, in _get_server_state private = [ x['addr'] for x in getattr(server, 'addresses').itervalues().next() if x['OS-EXT-IPS:type'] == 'fixed'] KeyError: 'OS-EXT-IPS:type' This extension was added less than 6 month ago, and so cannot be used on a release older than Grizzly ( like Folsom ). Commit of the extension : https://review.openstack.org/#/c/21453/ See https://wiki.openstack.org/wiki/ReleaseNotes/Grizzly#Key_New_Features_2
Michael Scherer committed -
The existing code was using: a[b][c[d]] where a[b] would always exist and c[d] would always exist. But the nested index would not alway exist, particularly when a DigitalOcean item disapeared. This changes that nested index to a `get` and properly handles None results. This bug was present in two spots in this file.
Evan Wies committed -
Previous patch was reverted due to the fact that there was an issue with the results not always being a dictionary (they're sometimes a unicode string, ie. when the with_items is used with yum). This minor change corrects that by checking for a dict object.
James Cammarata committed
-