- 15 Oct, 2015 1 commit
-
-
This work fulfills PR #11799. Moved the content out of the vault file, into best practices, edited it, then referenced it from variables and vaults content files.
Sandra Wills committed
-
- 14 Oct, 2015 8 commits
-
-
Sandra Wills committed
-
Toshio Kuratomi committed
-
Toshio Kuratomi committed
-
Fixes #12742
James Cammarata committed -
Brian Coca committed
-
Python 3: don't convert module arguments to bytes
Toshio Kuratomi committed -
This reverts commit 073f10a5 and instead disables the failing test. We're focusing on Python 3 support on the controller first; modules will come later.
Marius Gedminas committed -
Fixes a test failure: ====================================================================== ERROR: test_module_utils_basic_ansible_module_creation (units.module_utils.test_basic.TestModuleUtilsBasic) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/mg/src/ansible/test/units/module_utils/test_basic.py", line 250, in test_module_utils_basic_ansible_module_creation supports_check_mode=True, File "/home/mg/src/ansible/lib/ansible/module_utils/basic.py", line 470, in __init__ self._check_required_arguments() File "/home/mg/src/ansible/lib/ansible/module_utils/basic.py", line 1050, in _check_required_arguments self.fail_json(msg="missing required arguments: %s" % ",".join(missing)) File "/home/mg/src/ansible/lib/ansible/module_utils/basic.py", line 1445, in fail_json sys.exit(1) SystemExit: 1 -------------------- >> begin captured stdout << --------------------- {"msg": "missing required arguments: foo", "failed": true} because converting 'foo' to bytes yields b'foo' on Python 3, which doesn't match the native-unicode 'foo' argument spec.
Marius Gedminas committed
-
- 13 Oct, 2015 15 commits
-
-
Python 3: there's no basestring
James Cammarata committed -
added "include" for ansible_ssh_ change to another section
Toshio Kuratomi committed -
Sandra Wills committed
-
Fixes #12719
James Cammarata committed -
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Ansible ssh changes docswork
James Cammarata committed -
Marius Gedminas committed
-
Python 3: there's no iteritems()
James Cammarata committed -
Marius Gedminas committed
-
Make ansible.vars.unsafe_proxy Python 3 friendly
James Cammarata committed -
Instead of str and unicode we have to deal with bytes and str.
Marius Gedminas committed -
Fixes ImportError: No module named '__builtin__' on Python 3.
Marius Gedminas committed -
James Cammarata committed
-
- 12 Oct, 2015 16 commits
-
-
Toshio Kuratomi committed
-
James Cammarata committed
-
AnsibleModules.log() fix for python3
Toshio Kuratomi committed -
Also add unittests for AnsibleModules.log() Fixes #12586
Toshio Kuratomi committed -
Toshio Kuratomi committed
-
Toshio Kuratomi committed
-
* corrupt/invalid file causes tracebacks * incorrect initialization of display/_display in BaseCacheModule class * tweaking the way errors in get() on jsonfile caches work, to raise a proper AnsibleError in that situation so the playbook/task is stopped Fixes #12708
James Cammarata committed -
Toshio Kuratomi committed
-
Fixes #12711
James Cammarata committed -
ansible_ssh_* changes from 1.9 to 2.0, original note made into a separate file for easier editing, and an include for this new file added to each of the 6 file affected by this change
Sandra Wills committed -
Added an option to use the private network IP address for DigitalOcean dynamic inventory
Brian Coca committed -
Removed deletion of salt by 'password' lookup
Brian Coca committed -
James Cammarata committed
-
James Cammarata committed
-
Charles Paul committed
-