- 17 Dec, 2013 4 commits
-
-
The quantum_* modules will now try neutronclient first, and fall back to quantumclient. If that fails, error out. The code now references neutron instead of quantum in all internal cases.
Brad P. Crochet committed -
ssh_alt - only trigger 'fatal' when returncode == 255 (interpreted as 'c...
jctanner committed -
jeromew committed
-
`env-setup` fix for zsh <= 4.3.10
jctanner committed
-
- 16 Dec, 2013 6 commits
-
-
Prevents UnicodeEncodeError
jctanner committed -
This reverts commit 15b89b45, reversing changes made to 3d836a1a.
James Tanner committed -
Fixes #5159 `file` module: Don't catch `SystemExit`
jctanner committed -
postgres_db CHECKMODE changed status
jctanner committed -
Fix setup.py to work with 'pip install -e .'
jctanner committed -
ssh_alt.py / decrease # of ssh roundtrips
jctanner committed
-
- 15 Dec, 2013 5 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Minor docsite fixes
Michael DeHaan committed -
Mikhail Sobolev committed
-
Mikhail Sobolev committed
-
- 13 Dec, 2013 10 commits
-
-
Jens Rantil committed
-
Jens Rantil committed
-
fix when the system does not have lsb_release script, but has /etc/lsb_release file
jctanner committed -
jeromew committed
-
Fix for issue #4730 - stacktrace when deferenencing a non-existent group
jctanner committed -
James Tanner committed
-
#4869 compatibility with older versions of apt
jctanner committed -
Make first argument to syslog.openlog be a string
jctanner committed -
Nova doesn't attempt to auth on obj instantiation
jctanner committed -
openbsd_pkg: rework package name parsing.
jctanner committed
-
- 12 Dec, 2013 15 commits
-
-
Add get_dmi_facts in setup for FreeBSD systems using dmidecode
jctanner committed -
cloud/rds module: added promote command & updated modify command to allow for renaming of database instances.
jctanner committed -
James Tanner committed
-
Fix ec2_ami no_reboot setting (currently it will not reboot instances to...
jctanner committed -
Line 276: no_reboot = dict(default=True, type="bool"), This should really default to False (When AMIs are created the machine will reboot before copying the disk). "When enabled, Amazon EC2 does not shut down the instance before creating the image. When this option is used, file system integrity on the created image cannot be guaranteed."
evan82 committed -
Corrected documentation in ec2_ami module - no_reboot defaults to yes
jctanner committed -
Make sure initial_state is initialized
jctanner committed -
Tweak some task examples to be more in-line with eucalyptus-ec2.yml in ansible-examples
jctanner committed -
Jim Dalton committed
-
Tim Gerla committed
-
Fix typos in intro_configuration.rst & constants.py
Michael DeHaan committed -
Ferenc Grecu committed
-
Ferenc Grecu committed
-
Make sure ssh pipes are empty before moving on
jctanner committed -
Resolves issue #5082 Code as it was would hit a scenario where one of the FDs was not ready for reading the first time through -- but p.poll() would show the process as complete. This would cause ansible to continue on, while leaving some content left in a pipe. The other scenario -- the one that causes the unclosed quote, is if we go through select.select() and we do get stdout in the ready for reading -- we read from it (9000 bytes), but that's not all that is there. Again we'd get to the p.poll() check and it would be indeed not none, but we would have left some of stdout on the FD and thus the json blob would be malformed. Tested with and without full ssh debugging. Tested with and without ControlPersist Tested with and without ControlPersist sockets already created
Jesse Keating committed
-