summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Possible fix for the first newline and triple newline problemsv2-parse_kv-newlineToshio Kuratomi2015-03-301-3/+2
|
* Various unicode and backslash escape cleanupsToshio Kuratomi2015-03-304-44/+143
| | | | | | | | | | | | | | | | | | * Do backslash escape parsing in parse_kv() [was being done in the copy module purely for newlines in the copy module's content param before] * Make parse_kv always return unicode * Add bandaid to transform args to unicode until we can fix things calling parse_kv to always send it unicode. * Make split_args deal with unicode internally. Warning, no bandaid for things calling split_args without giving it unicode (shouldn't matter as dealt with str internally before) * Fix copy and unarchive action plugins to not use setdefaultencoding * Remove escaping from copy (it was broken and made content into latin-1 sometimes). escaping is now in parse_kv. * Expect that content is now a unicode string so transform to bytes just before writing to the file. * Add initial unittests for split_args and parse_kv. 4 failing tests.because split_args is injecting extra newlines.
* Fix no closed parensToshio Kuratomi2015-03-301-5/+10
|
* Port sivel's fix for egg_info (#10563) to v2Toshio Kuratomi2015-03-301-2/+1
|
* Remove fireball connection plugin. v2 will have accelerate but not fireballToshio Kuratomi2015-03-301-151/+0
|
* Some notes on optimizing module_replacerToshio Kuratomi2015-03-301-0/+10
|
* Update core to fix cloudformation problemToshio Kuratomi2015-03-301-7/+6
|
* Merge pull request #10545 from resmo/feature/cloudstack-utilsBrian Coca2015-03-302-0/+255
|\ | | | | cloudstack: common code used in cloudstack modules
| * cloudstack: module utils are BSD licensedRene Moser2015-03-261-10/+20
| |
| * cloudstack: fail_json() if library cs is not foundRene Moser2015-03-261-4/+5
| |
| * cloudstack: add doc fragmentRene Moser2015-03-261-0/+62
| |
| * cloudstack: add utils for common functionalityRene Moser2015-03-261-0/+182
| |
* | Merge pull request #10571 from bcoca/community_docsBrian Coca2015-03-301-43/+69
|\ \ | | | | | | small updates to community and contribution page
| * | small updates to community and contribution pageBrian Coca2015-03-291-43/+69
| | |
* | | added zabbix modules to changelogBrian Coca2015-03-291-0/+3
|/ /
* | Merge pull request #10566 from bcoca/role_sudoBrian Coca2015-03-291-1/+1
|\ \ | | | | | | readded sudo/su vars to allow role/includes to work with passed sudo/su
| * | readded sudo/su vars to allow role/includes to work with passed sudo/suBrian Coca2015-03-271-1/+1
|/ /
* | Merge pull request #10563 from sivel/fix-gen-egg-infoBrian Coca2015-03-271-2/+1
|\ \ | | | | | | egg_info is now written directly to lib
| * | egg_info is now written directly to libMatt Martz2015-03-271-2/+1
| | |
* | | Merge pull request #10558 from hagbarddenstore/develBrian Coca2015-03-271-0/+2
|\ \ \ | | | | | | | | Always define error before using it
| * | | Always define error before using itKim Johansson2015-03-271-0/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | When the error reason is "Forbidden", the code throws a Python exception rather than simply outputting the exception reason. It's not nice to throw a Python exception when all the info to display a proper message is available.
* | | Merge pull request #10557 from kristous/patch-2Brian Coca2015-03-271-1/+1
|\ \ \ | | | | | | | | Update README.md
| * | | Update README.mdkristous2015-03-271-1/+1
| |/ / | | | | | | to get debuild you need to install devscripts
* | | Merge pull request #9894 from 47lining/cloud_modules_sts_support_redux_ansibleBrian Coca2015-03-272-29/+33
|\ \ \ | | | | | | | | Cloud Modules STS Support Redux
| * | | Add support for AWS Security Token Service (temporary credentials) to all ↵Mick Bass2014-12-252-29/+33
| | | | | | | | | | | | | | | | AWS cloud modules.
* | | | Merge pull request #10554 from jxn/changelog-spellcheckBrian Coca2015-03-271-5/+5
|\ \ \ \ | |_|/ / |/| | | Fix a few spelling errors in the changelog
| * | | Fix a few spelling errors in the changelogjxn2015-03-261-5/+5
|/ / /
* | | Merge pull request #10551 from deimosfr/develBrian Coca2015-03-261-1/+1
|\ \ \ | | | | | | | | | | | | | | | | fix consul inventory issue (missing method param) merging as this does not seem to have worked before
| * | | fix consul inventory issue (missing method param)deimosfr2015-03-261-1/+1
|/ / /
* | | Correct typoToshio Kuratomi2015-03-261-1/+1
| | |
* | | Update the module pointersToshio Kuratomi2015-03-263-21/+18
| | |
* | | v2 equivalent for https://github.com/ansible/ansible/pull/8564Toshio Kuratomi2015-03-261-4/+6
| | | | | | | | | | | | | | | Looks like there's currently no code for the ansible_*_interpreter but modified the note abouot adding it
* | | make sure the shebang we inject into the module is a strToshio Kuratomi2015-03-261-1/+3
| |/ |/| | | | | Fixes #8564
* | added cloudtrail to changelogBrian Coca2015-03-261-0/+1
| |
* | added maven artifact to changelogBrian Coca2015-03-251-0/+1
| |
* | added pushover module to changelogBrian Coca2015-03-251-0/+1
| |
* | updated changelogBrian Coca2015-03-251-0/+6
| |
* | Merge pull request #10538 from tobarja/patch-1Brian Coca2015-03-251-3/+3
|\ \ | | | | | | Fix some typos in CHANGELOG.md
| * | Fix some typos in CHANGELOG.mdAndrew Thompson2015-03-251-3/+3
|/ /
* | Fix the command module handling of non-ascii values.Toshio Kuratomi2015-03-251-2/+7
| | | | | | | | | | We can't depend on the args being unicode text because we're in module land, not in the ansible controller land
* | Convert exceptions to unicode using to_unicode rather than str. that stops ↵Toshio Kuratomi2015-03-251-1/+2
| | | | | | | | unicode errors if the string has non-ascii text
* | Make run_command() work when we get byte str with non-ascii characters ↵Toshio Kuratomi2015-03-252-1/+15
| | | | | | | | | | | | | | | | (instead of unicode type like we were expecting) Fix and test. Fixes #10536
* | Fix assert to work with unicode valuesToshio Kuratomi2015-03-251-3/+3
| |
* | tweaking the CHANGELOGJames Cammarata2015-03-251-117/+106
| |
* | Merge pull request #10534 from matthieucan/patch-1Brian Coca2015-03-251-1/+1
|\ \ | | | | | | doc: building debian package: 'asciidoc' is a required dependency
| * | doc: building debian package: 'asciidoc' is a required dependencyMatthieu Caneill2015-03-251-1/+1
| | |
* | | And all of core module changes addedToshio Kuratomi2015-03-251-7/+34
| | |
* | | Add a unch of changelog entries for 1.9Toshio Kuratomi2015-03-251-2/+18
| | |
* | | Put all module changes in the same locationToshio Kuratomi2015-03-251-23/+25
|/ /
* | added modules from extrasBrian Coca2015-03-251-0/+13
| |