Commit Graph

6508 Commits (03300e99ac35fbf12beae4c85b8fec058dcd97b5)

Author SHA1 Message Date
Toshio Kuratomi de306eb5da Small cleanup to use class attribute directly instead of property for transport names 8 years ago
Toshio Kuratomi fee73100c4 Move BUFSIZE to __init__ since it's common to many connection plugins 8 years ago
Toshio Kuratomi 0ca4be6fb5 Update submodule refs for docs fixes 8 years ago
Toshio Kuratomi ec419446b7 Update submodule refs 8 years ago
Toshio Kuratomi fe278202f2 Fix saving of tracebacks on module failure 8 years ago
Toshio Kuratomi 86080fbaa9 Update submodule refs 8 years ago
Toshio Kuratomi 66328e5200 Merge pull request #14967 from ansible/facts-subset-and-cleanup
Facts subset and cleanup
8 years ago
Brian Coca f3b9449e07 don't raise exceptoins on bad hosts files
fixes #14969
8 years ago
Peter Sprygada ace0c9c5c2 fixes ansible-modules-code#3250
Sets the default value for transport to 'cli'
8 years ago
Peter Sprygada c039ac524d updates to nxos shared module
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
8 years ago
Toshio Kuratomi 512825455e Make ohai and facter work via module_utils Fact classes rather than in the setup module 8 years ago
Toshio Kuratomi 5a1e35224b Make changes proposed during review of restrict fact gathering feature:
* 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
8 years ago
Toshio Kuratomi d665911bab Allow FieldAttribute lists and sets to be set from a comma separated string 8 years ago
Yannig Perré 88772b6003 Add a way to restrict gathered facts in Ansible:
- Using gather_subset options
- By ignoring ohai/chef or facter/puppet facts
8 years ago
Brian Coca 2984ffdfac now item callback honors display_skipped_hosts
fixes #14956
8 years ago
Peter Sprygada d211b4c962 feature to implement localized cli prompts to eos
This change localizes the cli prompt regexps to the eos shared module
instead of the common prompts implemented in shell
8 years ago
Peter Sprygada 5338d6af28 feature in ios to tell shell not to kickstart
This commit is necessary to tell shell not to kickstart the cli session as
it causes problems in IOS to recognize the prompt.
8 years ago
Peter Sprygada 249caac0d3 feature to allow prompts to be configured at instatiation
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.
8 years ago
Peter Sprygada c55d1c55af Merge pull request #14906 from devananda/fix-shell-for-junos
Send empty command before recv
8 years ago
Brian Coca 00b8b49112 Merge pull request #14873 from bcoca/paging_aws
paging for amazon modules
8 years ago
Brian Coca fdcd80bf87 Merge pull request #13339 from bcoca/retry_rate
draft of common retry and rate limiting decorators for api based modules
8 years ago
Peter Sprygada e3671a8a83 bugfix for eos shared module and new optimization
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
8 years ago
Toshio Kuratomi 180e70b67a Merge pull request #14937 from mattclay/unicode-dir
Fix missing to_bytes on directory path.
8 years ago
Matt Clay 1e1852c34d Add missing to_bytes on directory path. 8 years ago
David Shrewsbury 336d19d3b0 Set type for OpenStack 'verify' param
The 'verify' param is a bool, so we don't want it to be an assumed
str.
8 years ago
Peter Sprygada a59fe25bb1 bugfix for shared module shell.py
removes get_cli_connection function which was left over from a refactor
but was no longer in use
8 years ago
Matt Clay ba1bcdfc17 Add noseclabel support to libvirt_lxc plugin. 8 years ago
James Cammarata 16f107a491 Add mysql connection_timeout param to module_utils/mysql.py 8 years ago
Devananda van der Veen 08f270ad71
Send empty command before recv
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>
8 years ago
James Cammarata 52efd7438c Fixing template/assemble action plugins related to tmp dir use/cleanup 8 years ago
Matt Clay f878a5d2e0 Fix unicode handling in connection plugins. 8 years ago
James Cammarata 09e5f0578a Don't always insert failed in the results (again) 8 years ago
Brian Coca 5cbdaff9fd avoid creating extra tmp dirs we don't delete
fixes #14867
8 years ago
James Cammarata ccf646665b Revert "Removing explicit setting of failed/failed_when"
This reverts commit 4e528e9535.
8 years ago
James Cammarata 4e528e9535 Removing explicit setting of failed/failed_when 8 years ago
Brian Coca df1268ed69 Merge pull request #14892 from dagwieers/patch-14
Another misspelling
8 years ago
Brian Coca 05983fdaa5 Merge pull request #14891 from dagwieers/patch-13
Fix misspelling and some cosmetic change
8 years ago
Brian Coca 1c1f5e9f99 Merge pull request #14889 from nitzmahone/fix_failed_when_blind_override
Fix blind override in failed_when
8 years ago
Peter Sprygada ca2871de20 Merge pull request #14697 from privateip/shared_module_openswitch
bugfixes for openswitch shared module
8 years ago
Peter Sprygada ae5951b97f Merge pull request #14698 from privateip/plugin_action_ops_template
updates the ops_template plugin action backup key
8 years ago
Dag Wieers a5e11b1325 Another misspelling
...while reading the source
8 years ago
Dag Wieers d7d04ad2cd Fix misspelling and some cosmetic change 8 years ago
nitzmahone dbff3a6bbc Fix blind override in failed_when
caused all task failures to be success
8 years ago
Brian Coca 18e9bc9753 common retry and rate limiting decorators for apis
allows modules to wrap their request functions in common retry and rate limiting
decorators or functions
8 years ago
Brian Coca 9318727021 corrected changed_when handling 8 years ago
James Cammarata 7f233c4c5e Updating submodule refs 8 years ago
Toshio Kuratomi 331f62f769 Update submodule refs 8 years ago
Toshio Kuratomi 0628951ac6 Handle shlex incompatibility between python2.6 and python3 8 years ago
Toshio Kuratomi c0e2dd1693 Fix ssh connection plugin to work with python3 8 years ago
James Cammarata eb463fab00 Also changing ansible-shell -> ansible-console in cli code comments 8 years ago