summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Initial idea for making includes 'static' (pre-processed instead of dynamic)static_includesJames Cammarata2016-03-159-33/+268
|
* Adding iproute to certain RH-based docker imagesJames Cammarata2016-03-153-0/+3
|
* add a fact gathering check for the default of allToshio Kuratomi2016-03-152-8/+25
|
* Update submodule refsToshio Kuratomi2016-03-152-12/+15
|
* Merge pull request #14967 from ansible/facts-subset-and-cleanupToshio Kuratomi2016-03-1511-222/+410
|\ | | | | Facts subset and cleanup
| * Make integration tests for fact gathering assert on failurefacts-subset-and-cleanupToshio Kuratomi2016-03-142-16/+98
| |
| * Make ohai and facter work via module_utils Fact classes rather than in the ↵Toshio Kuratomi2016-03-149-100/+131
| | | | | | | | setup module
| * Make changes proposed during review of restrict fact gathering feature:Toshio Kuratomi2016-03-143-187/+131
| | | | | | | | | | | | | | | | | | | | * Make documentation examples into code blocks * Make code to call the subsets more general. * Made min subset always execute (cannot disable it). * Use a passed in modules parameter rather than global modules. This is needed for ziploader * Remove unneeded __init__() * Remove uneeded multiple inheritance from a base class * gather_facts is now a list type
| * Allow FieldAttribute lists and sets to be set from a comma separated stringToshio Kuratomi2016-03-141-5/+12
| |
| * Add a way to restrict gathered facts in Ansible:Yannig Perré2016-03-148-9/+133
| | | | | | | | | | - Using gather_subset options - By ignoring ohai/chef or facter/puppet facts
* | don't raise exceptoins on bad hosts filesBrian Coca2016-03-141-7/+9
| | | | | | | | fixes #14969
* | added warning about additional requirementsBrian Coca2016-03-141-0/+4
| |
* | fixes ansible-modules-code#3250Peter Sprygada2016-03-141-1/+1
| | | | | | | | Sets the default value for transport to 'cli'
* | updates to nxos shared modulePeter Sprygada2016-03-141-36/+44
|/ | | | | | | | This commit address a number of minor updates the nxos shared module * connect() is now lazy loaded * parse inner output messages when errored * code syntax cleanup
* now item callback honors display_skipped_hostsBrian Coca2016-03-141-4/+5
| | | | fixes #14956
* Adding unit tests for TaskResultJames Cammarata2016-03-141-0/+130
|
* feature to implement localized cli prompts to eosPeter Sprygada2016-03-131-2/+18
| | | | | This change localizes the cli prompt regexps to the eos shared module instead of the common prompts implemented in shell
* feature in ios to tell shell not to kickstartPeter Sprygada2016-03-131-1/+1
| | | | | This commit is necessary to tell shell not to kickstart the cli session as it causes problems in IOS to recognize the prompt.
* feature to allow prompts to be configured at instatiationPeter Sprygada2016-03-131-7/+8
| | | | | | | | This commit adds a new feature to allow implementations of shell to specify the command prompt regexp to be used. It allows adds a new kwarg at instantiation to kick the remote device with a carriage return. By default the kickstart flag is true but can be disabled by passing kickstart=False.
* Adding python-dev to the list of packages for ubuntu1204 dockerJames Cammarata2016-03-131-0/+1
| | | | [ci skip]
* Also adding an upgrade of pycrypto to ubuntu1204 configJames Cammarata2016-03-131-1/+1
|
* Adding rubygems to the ubuntu1204 docker configJames Cammarata2016-03-131-0/+1
| | | | [no ci]
* Fixing typo in ubuntu1204 docker configJames Cammarata2016-03-131-1/+1
|
* Updating jinja2 in ubuntu1204 docker imageJames Cammarata2016-03-131-0/+1
|
* Adding ubuntu1204 to the travis config for testingJames Cammarata2016-03-131-0/+1
|
* Initial commit for Ubuntu 12.04 docker config for testingJames Cammarata2016-03-132-0/+74
|
* Merge pull request #14906 from devananda/fix-shell-for-junosPeter Sprygada2016-03-111-0/+1
|\ | | | | Send empty command before recv
| * Send empty command before recvDevananda van der Veen2016-03-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | On some switches, starting an SSH connection and immediately calling recv() will result in a connection timeout. The switch requires some input on the channel before it provides any prompt. As such, this patch sends an empty command immediately upon connection, triggering the switch to send a prompt which the shell can then interpret. Signed-off-by: Devananda van der Veen <devananda.vdv@gmail.com>
* | Merge pull request #14873 from bcoca/paging_awsBrian Coca2016-03-111-0/+25
|\ \ | | | | | | paging for amazon modules
| * | paging for amazon modulesBrian Coca2016-03-091-0/+25
| | | | | | | | | | | | | | | this adds a decorator for use in amazon modules so retrieval functions can page using the 'marker' that most boto functions return
* | | Merge pull request #13339 from bcoca/retry_rateBrian Coca2016-03-111-0/+103
|\ \ \ | | | | | | | | draft of common retry and rate limiting decorators for api based modules
| * | | common retry and rate limiting decorators for apisBrian Coca2016-03-091-0/+103
| | | | | | | | | | | | | | | | | | | | allows modules to wrap their request functions in common retry and rate limiting decorators or functions
* | | | bugfix for eos shared module and new optimizationPeter Sprygada2016-03-111-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit address to issues in the eos shard module. The first one is a bug fix for returning the running config when the transport is eapi. The shared module will now return config text instead of an object. The second is a optimization that delays when the eos module connects to the remote devices. This provies a performance enhancement when using ssh since the module doesn't default to connecting immediately
* | | | Merge pull request #14937 from mattclay/unicode-dirToshio Kuratomi2016-03-112-6/+9
|\ \ \ \ | | | | | | | | | | Fix missing to_bytes on directory path.
| * | | | Add missing to_bytes on directory path.Matt Clay2016-03-111-1/+2
| | | | |
| * | | | Add unicode dir to connection tests.Matt Clay2016-03-111-5/+7
| | | | |
* | | | | Merge pull request #14935 from dagwieers/patch-15Brian Coca2016-03-111-392/+454
|\ \ \ \ \ | | | | | | | | | | | | Reformat new module lists
| * | | | | Reformat new module listsDag Wieers2016-03-121-392/+454
|/ / / / / | | | | | | | | | | Make the Changelog easier to parse, especially the list of new modules
* | | | | Merge pull request #14921 from Shrews/openstack_param_fixToshio Kuratomi2016-03-111-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Set type for OpenStack 'verify' param
| * | | | | Set type for OpenStack 'verify' paramDavid Shrewsbury2016-03-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 'verify' param is a bool, so we don't want it to be an assumed str.
* | | | | | Merge pull request #14862 from mckerrj/develJason McKerr2016-03-111-0/+72
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Adding committer guidelines to docsite
| * | | | | updates based on feedback from docschick and bcoca.Jason McKerr2016-03-111-16/+16
| | | | | |
| * | | | | fix formatting for people sectionJason McKerr2016-03-081-0/+1
| | | | | |
| * | | | | initial checkin of the new Community Committer GuidelinesJason McKerr2016-03-081-0/+71
| | | | | |
* | | | | | Reorganizing tox stuff and making py3-specific requirementsJames Cammarata2016-03-114-2/+22
| |/ / / / |/| | | |
* | | | | Moving docker tests to pre-compiled imagesJames Cammarata2016-03-101-3/+2
| | | | |
* | | | | bugfix for shared module shell.pyPeter Sprygada2016-03-101-21/+0
| | | | | | | | | | | | | | | | | | | | | | | | | removes get_cli_connection function which was left over from a refactor but was no longer in use
* | | | | Merge pull request #14910 from mattclay/libvirt-no-selinuxMatt Davis2016-03-114-1/+21
|\ \ \ \ \ | | | | | | | | | | | | Add noseclabel support to libvirt_lxc plugin.
| * | | | | Add noseclabel support to libvirt_lxc plugin.Matt Clay2016-03-104-1/+21
| | | | | |
* | | | | | Merge pull request #14905 from amesbury/patch-1Brian Coca2016-03-101-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Fixed typo