Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removing delegate_to integration tests, since it's not enabled in devel eitherv1.8.3release1.8.3 | James Cammarata | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Fix bad import from merge conflict resolution in filter_plugins/core.py | James Cammarata | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Version bump for release 1.8.3 | James Cammarata | 2015-02-17 | 8 | -8/+17 |
| | |||||
* | Fix the to_nice_yaml filter to always return unicode strings | Toshio Kuratomi | 2015-02-17 | 1 | -2/+3 |
| | | | | Fixes #10243 | ||||
* | Didn't port isbasestring/isunicodestring from kitchen so switch to isinstance | Toshio Kuratomi | 2015-02-17 | 1 | -4/+4 |
| | | | | | Conflicts: v2/ansible/utils/unicode.py | ||||
* | Set proper permissions for ansible-vault view | Nicolas Le Manchet | 2015-02-17 | 1 | -0/+2 |
| | |||||
* | Fix template module broken when modifying symlinks | Toshio Kuratomi | 2015-02-17 | 2 | -2/+42 |
| | | | | | | | Needed to clear unwanted parameters from both args and complex args when calling file module. Fixes #10208 | ||||
* | fixed issue with prompt == none and su + ask_pass in ssh plugin | Brian Coca | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | make su promt AIX compatible | Henk Wiedig | 2015-02-17 | 1 | -1/+1 |
| | | | | | $ su suuser date suusers's Password: | ||||
* | Close some file handles explicitly in facts.py | Toshio Kuratomi | 2015-02-17 | 1 | -3/+7 |
| | | | | | | Helps control open file descriptor count with pypy (which is used with one coreos + ansible example). Part of a fix for https://github.com/ansible/ansible/issues/10157 | ||||
* | Obfuscate passwords in more places where it is displayed | Toshio Kuratomi | 2015-02-17 | 3 | -115/+102 |
| | | | | | Conflicts: v2/ansible/module_utils/basic.py | ||||
* | Ignore errors from `shutil.rmtree` when removing temporary directory | Daniel Upton | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Use termios instead of stty for compatibility | Dagobert Michelsen | 2015-02-17 | 1 | -1/+6 |
| | |||||
* | Do not assume that stdin is a tty | Michael Scherer | 2015-02-17 | 1 | -1/+4 |
| | | | | | This can be used from another non interactive software, see #9695 for details. | ||||
* | correct typo that breaks hashing on python 2.4. | Jon Hadfield | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Correct filter specification | Toshio Kuratomi | 2015-02-17 | 1 | -5/+5 |
| | |||||
* | Wrap some filters so they return unicode. | Toshio Kuratomi | 2015-02-17 | 1 | -9/+13 |
| | | | | | | | | | | The rules are -- if the filter returns str type and the str may contain non-ascii characters then wrap it to convert to unicode type. Not needed if the function already returns unicode type or only returns ascii characters Conflicts: lib/ansible/runner/filter_plugins/core.py | ||||
* | Add v2's unicode.py to utils so we can use unicode_wrap in the filter_plugins | Toshio Kuratomi | 2015-02-17 | 1 | -0/+248 |
| | |||||
* | Fix for v1 handling of unicode extra-vars | Toshio Kuratomi | 2015-02-17 | 3 | -3/+9 |
| | |||||
* | Be explicit about unicode str transformation | Toshio Kuratomi | 2015-02-17 | 1 | -1/+7 |
| | | | | Fixes #10126 | ||||
* | fix suggested by @aikomastboom | Andreas Reischuck | 2015-02-17 | 1 | -0/+2 |
| | |||||
* | Fix for unicode filenames for template module | Toshio Kuratomi | 2015-02-17 | 1 | -1/+2 |
| | | | | Fixes #10110 | ||||
* | ansible.utils to_unicode/to_bytes isn't robust in the face of | Toshio Kuratomi | 2015-02-17 | 1 | -1/+6 |
| | | | | non-strings. Do some value checking in the calling code | ||||
* | Another place that needs to be json_dict_bytes_to_unicode | Toshio Kuratomi | 2015-02-17 | 1 | -1/+1 |
| | | | | | Conflicts: v2/ansible/inventory/script.py | ||||
* | Make py2.4 remote checksum large-file-enabled as well | Toshio Kuratomi | 2015-02-17 | 1 | -1/+1 |
| | | | | | Conflicts: v2/ansible/plugins/shell/sh.py | ||||
* | jinja2 cannot handle byte strs with non-ascii. So we need to transform ↵ | Toshio Kuratomi | 2015-02-17 | 3 | -2/+22 |
| | | | | | | | | | | potential byte str into unicode type. This fix is for dynamic inventory. Fixes #10007 Conflicts: v2/ansible/inventory/script.py v2/ansible/module_utils/basic.py | ||||
* | do not use with, it is not supported all the way down to 2.4 | Akos Vandra | 2015-02-17 | 1 | -1/+1 |
| | | | | | Conflicts: v2/ansible/plugins/shell/sh.py | ||||
* | fixes #10086 | Akos Vandra | 2015-02-17 | 1 | -1/+1 |
| | | | | | Conflicts: v2/ansible/plugins/shell/sh.py | ||||
* | Fix quoting of shell parameters used in remote_checksum and add integration ↵ | Toshio Kuratomi | 2015-02-17 | 2 | -3/+3 |
| | | | | | | | | | | test to detect the error Fixes #682 Conflicts: test/integration/roles/test_unarchive/tasks/main.yml v2/ansible/plugins/shell/sh.py | ||||
* | Do not send stat all the parameters that unarchive received | Toshio Kuratomi | 2015-02-17 | 1 | -2/+3 |
| | | | | Fixes #546 | ||||
* | Fix various inventory scripts to use env python | Michael Scherer | 2015-02-17 | 3 | -3/+3 |
| | | | | Fix https://github.com/ansible/ansible/issues/9948 | ||||
* | fixed bad exampel for library that was library_path, which of course did | Brian Coca | 2015-02-17 | 1 | -1/+1 |
| | | | | not work | ||||
* | Use send instead of sendv on the systemd.journal (fixes #9886) | Luke Macken | 2015-02-17 | 1 | -4/+3 |
| | |||||
* | run_once tasks are skipped without checking the delegate_to host #9784 | Costi Ciudatu | 2015-02-17 | 1 | -2/+8 |
| | |||||
* | Restore json import for redis as well. Switch preference to simplejson for ↵ | Toshio Kuratomi | 2015-02-17 | 3 | -5/+10 |
| | | | | speed | ||||
* | facts caching: fix missing json in jsonfile caching | Rene Moser | 2015-02-17 | 1 | -0/+5 |
| | |||||
* | fixed json encoding issue with redis | Brian Coca | 2015-02-17 | 1 | -2/+2 |
| | |||||
* | Update changelog for the git clone parameter | Toshio Kuratomi | 2015-02-17 | 1 | -0/+2 |
| | |||||
* | git module now with clone parameter and update=no reverted | Toshio Kuratomi | 2015-02-17 | 1 | -0/+1 |
| | | | | | Conflicts: lib/ansible/modules/core | ||||
* | Strip the line to filter lines composed of only whitespaces | Michael Scherer | 2015-02-17 | 1 | -0/+1 |
| | | | | Fix #9395 | ||||
* | Variables lookup in a template should handle properly the undefined case | Nicolas Rémond | 2015-02-17 | 1 | -0/+2 |
| | |||||
* | Allow retries to be templatable | jszwedko | 2015-02-17 | 1 | -1/+1 |
| | | | | Fixes #5865 | ||||
* | file does not exist is not an error when checksumming for the template modules | Toshio Kuratomi | 2015-02-17 | 1 | -1/+3 |
| | |||||
* | Fix comment | Toshio Kuratomi | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Fix remote_checksum with delegate_to and add tests for several ways that ↵ | Toshio Kuratomi | 2015-02-17 | 4 | -4/+78 |
| | | | | delegate_to works | ||||
* | Fix template module to fail if remote checksumming failed | Toshio Kuratomi | 2015-02-17 | 1 | -0/+5 |
| | |||||
* | Fix for delegate_to with hosts that aren't in inventory | Toshio Kuratomi | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Issue-9704 Better handling of missing python | James Keener | 2015-02-17 | 3 | -1/+8 |
| | | | | | | | When they python interpreter is set incorrectly for the machine the file is being checked for (e.g. for the local or the remote), the error manifests as a readability or directory missing error which can be very misleading. | ||||
* | Be careful not to set the permissions of the destination of a symlink. | Toshio Kuratomi | 2015-02-17 | 1 | -3/+14 |
| | | | | | | | | | It's up to the module using the set_fs_attributes*/set_mode* methods to specify the filename of the destination of the symlink if that's really the file that should be modified. Half of the fix for: https://github.com/ansible/ansible-modules-core/issues/778 | ||||
* | Version bump for release 1.8.2v1.8.2 | James Cammarata | 2014-12-04 | 8 | -7/+23 |
| |