summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Fix bug in merged git refspec codeToshio Kuratomi2014-12-221-8/+5
| | | |
* | | | Pull in new refspec param for git moduleToshio Kuratomi2014-12-221-5/+8
| | | |
* | | | Merge pull request #9860 from rohanpm/test_git_refspecToshio Kuratomi2014-12-221-0/+35
|\ \ \ \ | | | | | | | | | | test_git: add tests for `refspec' argument
| * | | | test_git: add tests for `refspec' argumentRohan McGovern2014-12-191-0/+35
| | | | | | | | | | | | | | | | | | | | Includes a basic test of the clone and update cases.
* | | | | Merge pull request #9875 from astorije/patch-2Brian Coca2014-12-221-3/+3
|\ \ \ \ \ | | | | | | | | | | | | Fix conditionals doc example
| * | | | | Fix conditionals doc exampleJérémie Astori2014-12-211-3/+3
| | | | | | | | | | | | | | | | | | Use most recent parameters for yum
* | | | | | Merge pull request #9419 from willthames/aws_frankfurtBrian Coca2014-12-221-2/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | There are still a couple of modules that use their own lists, but that should not prevent this merge, those should be adapted to use this list in subsequent patch
| * | | | | | Handle case where boto needs an upgrade to recognise a new regionWill Thames2014-11-011-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Raise an exception if boto does not yet know about a region.
| * | | | | | Add Frankfurt AWS regionWill Thames2014-10-251-0/+1
| | | | | | |
* | | | | | | Merge pull request #9870 from bcoca/jsonfile_fixesBrian Coca2014-12-222-6/+3
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | cache json fixes
| * | | | | | fixed json encoding issue with redisBrian Coca2014-12-191-2/+2
| | | | | | |
| * | | | | | removed uneeded and posibly error producing json importBrian Coca2014-12-191-4/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | now uses utils.jsonify which does proper utf8 encoding
* | | | | | Merge pull request #9864 from mscherer/add_error_jsonfileBrian Coca2014-12-191-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add a explicit error when fact_caching_connection is not set
| * | | | | | Add a explicit error when fact_caching_connection is not setMichael Scherer2014-12-191-0/+2
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default, jsonfile is not documented, and the error message when fact_caching_connection is not set is a bit puzzling, so a error message would be beeter ( documentation too ). While redis is faster for bigger setup, jsonfile is fine for a small setup and is easier to deploy. The module will then stop ansible-playbook, as this match better the philosophy of Ansible being a fail-fast system.
* | | | | | Merge pull request #6676 from danjenkins/add-vpc-inventory-groupBrian Coca2014-12-191-3/+7
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Add a new inventory group so you can see instances in a particular VPC
| * | | | | Add a new inventory group so you can see instances in a particular VPCDan Jenkins2014-12-191-3/+7
|/ / / / /
* | | | | Update changelog for the git clone parameterToshio Kuratomi2014-12-171-0/+2
| | | | |
* | | | | git module now with clone parameter and update=no revertedToshio Kuratomi2014-12-172-7/+6
| | | | |
* | | | | Fix math filtersToshio Kuratomi2014-12-161-0/+2
| | | | |
* | | | | Pull in some new fixes to core modulesToshio Kuratomi2014-12-161-5/+7
| | | | |
* | | | | Fix some of the new math filtersToshio Kuratomi2014-12-161-4/+4
| | | | |
* | | | | Merge pull request #9832 from bcoca/math_filtersToshio Kuratomi2014-12-162-0/+100
|\ \ \ \ \ | | | | | | | | | | | | math filters!
| * | | | | removed redundant math functions as jinja2 provides abs() and round()Brian Coca2014-12-162-37/+2
| | | | | | | | | | | | | | | | | | | | | | | | already
| * | | | | removed stray jBrian Coca2014-12-161-1/+1
| | | | | |
| * | | | | math filters!Brian Coca2014-12-162-0/+135
| | | | | |
* | | | | | Merge pull request #9830 from nathancahill/vars_prompt-no-valueToshio Kuratomi2014-12-161-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix vars_prompt no/false default values
| * | | | | | fix vars_prompt no/false valuesNathan Cahill2014-12-161-1/+1
| | | | | | |
* | | | | | | Merge pull request #9810 from mscherer/fix_7732Toshio Kuratomi2014-12-161-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Do not use the variable name as a key for the result of the module
| * | | | | | | Do not use the variable name as a key for the result of the moduleMichael Scherer2014-12-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the variable name can interfere with various systems used to communicate between modules and ansible ( as reported in #7732 , where ansible_facts is a reserved key for updating the fact cache, for example ).
* | | | | | | | Merge pull request #9809 from mscherer/fix_9695Toshio Kuratomi2014-12-161-2/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Make sure ansible-doc work when stdin is not a tty
| * | | | | | | | Use --version to see if less can be executedMichael Scherer2014-12-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (less) 2> /dev/null would fail if stdin is /dev/null. Sinceless --version do not read anything from stdin, it is perfect for seeing if the software exist or not. Also replace the whole os system detection by directly using subprocess ( as we use it elsewhere, we already depend on it ).
| * | | | | | | | Do not assume that stdin is a ttyMichael Scherer2014-12-141-1/+4
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This can be used from another non interactive software, see #9695 for details.
* | | | | | | | Merge pull request #9807 from swimlappy/noproxyToshio Kuratomi2014-12-161-0/+24
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Request: Honor the "no_proxy" environment variable in Ansible
| * | | | | | | | Allow Ansible to honor the "no_proxy" environment varaible.Jason Holland2014-12-131-0/+24
| |/ / / / / / /
* | | | | | | | Merge pull request #9805 from mscherer/fix_9395Toshio Kuratomi2014-12-161-0/+1
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | Strip the line to filter lines composed of only whitespaces
| * | | | | | | Strip the line to filter lines composed of only whitespacesMichael Scherer2014-12-131-0/+1
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Fix #9395
* | | | | | | Fix documentation syntax problemsToshio Kuratomi2014-12-165-9/+7
| | | | | | |
* | | | | | | Update core so docs buildToshio Kuratomi2014-12-161-8/+5
| | | | | | |
* | | | | | | Update core modulesToshio Kuratomi2014-12-162-5/+11
| | | | | | |
* | | | | | | Comment remote_port in the example ansible.cfg so users do not override ↵Toshio Kuratomi2014-12-161-1/+1
| |/ / / / / |/| | | | | | | | | | | | | | | | | their .ssh/config settings by default
* | | | | | Fix for not all platforms having optional libraries at the proper versions.Toshio Kuratomi2014-12-163-2/+29
| | | | | |
* | | | | | Merge pull request #9611 from jhawkesworth/win_copy_file_template_ansible_core_1Brian Coca2014-12-1626-15/+1392
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add support for win_copy, win_file and win_template modules.
| * | | | | | Revised following comments from Chris Church.Jon Hawkesworth2014-12-164-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now uses sha1 checksums following merge of 9688. Also I undid the changes I made to fetch.py win_template.py now uses conn.shell.has_trailing_slash and conn.shell.join_path updated integration tests.
| * | | | | | Adding first pass at win_copy, win_file and win_template modules.root2014-12-1627-18/+1395
|/ / / / / /
* | | | | | Merge pull request #9227 from cchurch/win_feature_testsBrian Coca2014-12-153-0/+136
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add integration tests for win_feature
| * | | | | | Add integration tests for the win_feature module.Chris Church2014-09-303-0/+136
| | | | | | |
* | | | | | | Merge pull request #9824 from willempienaar/develChris Church2014-12-151-7/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fixed error handling for the enabling of PS Remoting
| * | | | | | | Fixed error handling for the enabling of PS RemotingWillem Pienaar2014-12-161-7/+1
|/ / / / / / /
* | | | | | | Merge pull request #7214 from lorin/dyn-inv-docBrian Coca2014-12-151-0/+20
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Document static groups of dynamic groups
| * | | | | | | Document static groups of dynamic groupsLorin Hochstein2014-04-291-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document how to create static groups with dynamic child groups