summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use the upstream: alias in .gitmodulesbaserock/v1.8.4Pedro Alvarez2015-02-261-4/+4
|
* Version bump for release 1.8.4v1.8.4release1.8.4James Cammarata2015-02-196-2/+16
|
* Submodule pointer update for 1.8.4James Cammarata2015-02-192-0/+0
|
* Removing delegate_to integration tests, since it's not enabled in devel eitherv1.8.3release1.8.3James Cammarata2015-02-171-1/+1
|
* Fix bad import from merge conflict resolution in filter_plugins/core.pyJames Cammarata2015-02-171-1/+1
|
* Version bump for release 1.8.3James Cammarata2015-02-178-8/+17
|
* Fix the to_nice_yaml filter to always return unicode stringsToshio Kuratomi2015-02-171-2/+3
| | | | Fixes #10243
* Didn't port isbasestring/isunicodestring from kitchen so switch to isinstanceToshio Kuratomi2015-02-171-4/+4
| | | | | Conflicts: v2/ansible/utils/unicode.py
* Set proper permissions for ansible-vault viewNicolas Le Manchet2015-02-171-0/+2
|
* Fix template module broken when modifying symlinksToshio Kuratomi2015-02-172-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 pluginBrian Coca2015-02-171-1/+1
|
* make su promt AIX compatibleHenk Wiedig2015-02-171-1/+1
| | | | | $ su suuser date suusers's Password:
* Close some file handles explicitly in facts.pyToshio Kuratomi2015-02-171-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 displayedToshio Kuratomi2015-02-173-115/+102
| | | | | Conflicts: v2/ansible/module_utils/basic.py
* Ignore errors from `shutil.rmtree` when removing temporary directoryDaniel Upton2015-02-171-1/+1
|
* Use termios instead of stty for compatibilityDagobert Michelsen2015-02-171-1/+6
|
* Do not assume that stdin is a ttyMichael Scherer2015-02-171-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 Hadfield2015-02-171-1/+1
|
* Correct filter specificationToshio Kuratomi2015-02-171-5/+5
|
* Wrap some filters so they return unicode.Toshio Kuratomi2015-02-171-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_pluginsToshio Kuratomi2015-02-171-0/+248
|
* Fix for v1 handling of unicode extra-varsToshio Kuratomi2015-02-173-3/+9
|
* Be explicit about unicode str transformationToshio Kuratomi2015-02-171-1/+7
| | | | Fixes #10126
* fix suggested by @aikomastboomAndreas Reischuck2015-02-171-0/+2
|
* Fix for unicode filenames for template moduleToshio Kuratomi2015-02-171-1/+2
| | | | Fixes #10110
* ansible.utils to_unicode/to_bytes isn't robust in the face ofToshio Kuratomi2015-02-171-1/+6
| | | | non-strings. Do some value checking in the calling code
* Another place that needs to be json_dict_bytes_to_unicodeToshio Kuratomi2015-02-171-1/+1
| | | | | Conflicts: v2/ansible/inventory/script.py
* Make py2.4 remote checksum large-file-enabled as wellToshio Kuratomi2015-02-171-1/+1
| | | | | Conflicts: v2/ansible/plugins/shell/sh.py
* jinja2 cannot handle byte strs with non-ascii. So we need to transform ↵Toshio Kuratomi2015-02-173-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.4Akos Vandra2015-02-171-1/+1
| | | | | Conflicts: v2/ansible/plugins/shell/sh.py
* fixes #10086Akos Vandra2015-02-171-1/+1
| | | | | Conflicts: v2/ansible/plugins/shell/sh.py
* Fix quoting of shell parameters used in remote_checksum and add integration ↵Toshio Kuratomi2015-02-172-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 receivedToshio Kuratomi2015-02-171-2/+3
| | | | Fixes #546
* Fix various inventory scripts to use env pythonMichael Scherer2015-02-173-3/+3
| | | | Fix https://github.com/ansible/ansible/issues/9948
* fixed bad exampel for library that was library_path, which of course didBrian Coca2015-02-171-1/+1
| | | | not work
* Use send instead of sendv on the systemd.journal (fixes #9886)Luke Macken2015-02-171-4/+3
|
* run_once tasks are skipped without checking the delegate_to host #9784Costi Ciudatu2015-02-171-2/+8
|
* Restore json import for redis as well. Switch preference to simplejson for ↵Toshio Kuratomi2015-02-173-5/+10
| | | | speed
* facts caching: fix missing json in jsonfile cachingRene Moser2015-02-171-0/+5
|
* fixed json encoding issue with redisBrian Coca2015-02-171-2/+2
|
* Update changelog for the git clone parameterToshio Kuratomi2015-02-171-0/+2
|
* git module now with clone parameter and update=no revertedToshio Kuratomi2015-02-171-0/+1
| | | | | Conflicts: lib/ansible/modules/core
* Strip the line to filter lines composed of only whitespacesMichael Scherer2015-02-171-0/+1
| | | | Fix #9395
* Variables lookup in a template should handle properly the undefined caseNicolas Rémond2015-02-171-0/+2
|
* Allow retries to be templatablejszwedko2015-02-171-1/+1
| | | | Fixes #5865
* file does not exist is not an error when checksumming for the template modulesToshio Kuratomi2015-02-171-1/+3
|
* Fix commentToshio Kuratomi2015-02-171-1/+1
|
* Fix remote_checksum with delegate_to and add tests for several ways that ↵Toshio Kuratomi2015-02-174-4/+78
| | | | delegate_to works
* Fix template module to fail if remote checksumming failedToshio Kuratomi2015-02-171-0/+5
|
* Fix for delegate_to with hosts that aren't in inventoryToshio Kuratomi2015-02-171-1/+1
|