- 24 Jan, 2014 6 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
James Tanner committed
-
Add ec2_key module.
jctanner committed -
key_name is not required when creating ec2 instances
jctanner committed
-
- 23 Jan, 2014 15 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
This reverts commit a807e3b9, reversing changes made to df8ecded.
James Tanner committed -
This reverts commit bedc616f, reversing changes made to a807e3b9.
James Tanner committed -
This reverts commit e759832d.
James Tanner committed -
James Tanner committed
-
Add module support for Rackspace Cloud Files Containers
jctanner committed -
Module support for Rackspace Cloud Files
jctanner committed -
rax_dns_record: Add rax_dns_record module
jctanner committed -
Fix bug where playbook tasks do not escalate privs with 'su'
jctanner committed -
Add rax_dns module
jctanner committed -
Disallow su and sudo params in same play/task
jctanner committed -
James Tanner committed
-
James Tanner committed
-
James Tanner committed
-
- 22 Jan, 2014 8 commits
-
-
Adding a check for pending tranasctions to the yum module
James Cammarata committed -
Fixes #4649
James Cammarata committed -
Paul Durivage committed
-
Paul Durivage committed
-
Bug in constants.py, ANSIBLE_SSH_PIPELINING should be coerced to boolean
James Cammarata committed -
Bug: chmod should be called only if the tmp dir was created in the first...
jctanner committed -
jeromew committed
-
jeromew committed
-
- 21 Jan, 2014 11 commits
-
-
James Tanner committed
-
Add su support
jctanner committed -
rax module: Fix regex match
jctanner committed -
module unarchive: documentation typos
jctanner committed -
notify/grove: set the service to "ansible" by default
jctanner committed -
digital_ocean: added requirements in DOCUMENTATION
jctanner committed -
Fix an issue where ansbile-pull fails with AttributeError
jctanner committed -
Rene Moser committed
-
zimbatm committed
-
Jan-Piet Mens committed
-
As part of 94f3b9bf the code was changed to support dynamically adding localhost to the inventory. This change introduced an crash when run via ansible-pull ``` Starting ansible-pull at 2014-01-20 23:09:57 Traceback (most recent call last): File "/tmp/ansible/bin/ansible", line 157, in <module> (runner, results) = cli.run(options, args) File "/tmp/ansible/bin/ansible", line 82, in run hosts = inventory_manager.list_hosts(pattern) File "/tmp/ansible/lib/ansible/inventory/__init__.py", line 372, in list_hosts result = [ h.name for h in self.get_hosts(pattern) ] File "/tmp/ansible/lib/ansible/inventory/__init__.py", line 136, in get_hosts subset = self._get_hosts(self._subset) File "/tmp/ansible/lib/ansible/inventory/__init__.py", line 177, in _get_hosts that = self.__get_hosts(p) File "/tmp/ansible/lib/ansible/inventory/__init__.py", line 198, in __get_hosts hpat = self._hosts_in_unenumerated_pattern(name) File "/tmp/ansible/lib/ansible/inventory/__init__.py", line 275, in _hosts_in_unenumerated_pattern ungrouped.add_host(new_host) AttributeError: 'NoneType' object has no attribute 'add_host' ``` The root cause is there is no group for the host to be added to. I fixed this case by creating the ungrouped group when it doesn't exist and then adding the host to the newly added group. This fixes the regression for me.
Rob Smith committed
-