Commit Graph

122 Commits (f5a92e356583c32e522b41937e51a39d1d54c47d)

Author SHA1 Message Date
chouseknecht f5a92e3565 Adding nxos_nxapi module. 10 years ago
Peter Sprygada 6c486cd341 bug fix for eos_config module
This addresses a bug in the eos_config module that would prevent it
from running properly.  The module should now properly process the config
and the candidate
10 years ago
Peter Sprygada 23f1d20a5c initial add of ios_template module
This adds a new module for working with IOS devices and building configurations
using templates.
10 years ago
Peter Sprygada d05ceb9e28 initial add of ios_config module
This adds a new module ios_config that can be used for configuring
IOS devices.
10 years ago
Peter Sprygada d64ae18307 bug fix on parameter in eos_config
The eos_config module has a bug where its trying to pass an argument
that doesn't exist.  This fixes that problem, removing the offending
keywork argment
10 years ago
Peter Sprygada 0df3a0e501 Merge pull request #2941 from privateip/module_eos_template
initial add of new module eos_template
10 years ago
Peter Sprygada 9ee5dc12b6 Merge pull request #2872 from privateip/module_eos_command
initial add of eos_command module
10 years ago
Peter Sprygada 6702496781 Merge pull request #2862 from privateip/module_eos_config
initial add of eos_config module
10 years ago
Peter Sprygada b7c2878136 initial add of eos_config module
This adds a new module for pushing configuraitons to eos devices in a
reliable and repeatable fashion.  It includes support for templating
configurations and backing up the current config prior to pushing out
changes.  This module works over either CLI or EAPI.

This PR has a dependency on ansible/ansible PR #14009 being merged
10 years ago
Peter Sprygada fca78058db fixup docstring in nxos_config module 10 years ago
Peter Sprygada 82a051d150 Merge pull request #2897 from privateip/module_nxos_command
initial add of new module nxos_command
10 years ago
Peter Sprygada 6cddd47e67 Merge pull request #2942 from privateip/module_nxos_template
initial add of nxos_template module
10 years ago
Peter Sprygada ef8df6c0ec initial add of new nxos_config module
This adds a new module for managing configuraiton files for Cisco NXOS
devices.  It provides configuration file management including templating
and backing up the current configuration.

This PR has a dependency on ansible/ansible PR # 14012
10 years ago
Peter Sprygada 25dee10814 initial add of nxos_template module
The nxos_template module worksw by allowing configurations to be pushed
to Cisco NXOS devices over CLI or NXAPI and templated using the Ansible
Jinja2 template engine
10 years ago
Peter Sprygada d29db07fab initial add of new module eos_template
The eos_template module works by allowing configurations to be pushed
to Arista EOS devices that can be templated by the Ansible Jinja2
template engine
10 years ago
Peter Sprygada 332c6a56c5 initial add of eos_command module
This adds a new module eos_command to network/eos.  The eos_command module
is used for sending arbitrary commands to Arista EOS devices.  It includes
arguments that allow the module to wait for specific values before the
module returns control to the playbook or fails
10 years ago
Peter Sprygada 32e238a8f0 initial add of new module nxos_command
This adds a new module nxos_command that can be used to send arbitrary
commands to NXOS devices.  The module includes an argument that allows
the responses to be evaluated and causes the module not to return
control to the playbook until a set of conditions has been met.
10 years ago
Brian Coca df222bed86 added missing version_added 10 years ago
techraf 49ec5a6a30 Added 'backup' parameter to get_url module 10 years ago
Brian Coca 1229adb36c Merge pull request #2609 from cspollar/devel
Fixed typo in uri module example
10 years ago
Brian Coca 292a83cba7 corrected version_added for new temp_dest feature 10 years ago
Brian Coca d2eaf33add Merge pull request #1887 from sysadmin75/9512_get_url_tmp_option2
Adds tmp_dest option to get_url module.
10 years ago
cspollar 34f7d7b068 Fixed typo in uri module example 10 years ago
Toshio Kuratomi 22c2789b72 Document and return an error if httplib2 >= 0.7 is not present. We
can't use httplib2 0.6.x and below because they do not verify TLS
certificates and thus are insecure.

Fixes #1875
10 years ago
Toshio Kuratomi 49ee5dd443 Remove debugging 10 years ago
Toshio Kuratomi 11833906b5 xmlcharrefreplace is only for encoding, not for decoding :-( 10 years ago
Brian Coca f33fba84c0 specified that uri must be uppercase 10 years ago
Brian Coca 144291120e restored quotes to checksum description to avoid breaking docs 10 years ago
JM 7943b3e6b0 description for the get_url module describing checksum verification before file download 10 years ago
Sam Mingo 7982d582d9 Update get_url.py
Fixed typo with header parameter to get_url in the documentation.
10 years ago
Colin Hutchinson ab50943887 Update get_url.py
use an abbreviated sha
10 years ago
Colin Hutchinson 880dc307b0 Remove the sample SHA256
putting a full sha256 made the width of the table in the generated docs not fit on some screens
10 years ago
Toshio Kuratomi 8412adc4f9 Quote checksum description to fix docs 11 years ago
muffl0n 4f0cf6d2ca Allow additional hashing algorithms. Directly use hashlib and check if
used algorithm is supported.
11 years ago
sysadmin75 cd8bfc7695 Adds tmp_dest option to get_url module.
Addresses the issue in ansible/ansible#9512
11 years ago
Brian Coca 587370e2e7 minor doc fixes to get_url 11 years ago
Brian Coca 76344db61e fixed version added 11 years ago
Dan 777d736baa Added header support
Added the ability to pass custom http headers to the fetch_url method.
11 years ago
Brian Coca 03a809a21c added version_added to body_format in uri 11 years ago
Brian Coca ca80b92233 added version_Added to get_url's force_basic_auth 11 years ago
Brian Coca 7ac642f406 Merge pull request #153 from woltage/devel
Refactor force basic auth, now all modules which use fetch_url() can use force_basic_auth
11 years ago
Brian Coca 11c6e6a3f5 Merge pull request #1179 from hver/devel
Allow custom methods in uri module
11 years ago
Iiro Uusitalo afd0222184 uri.py is not using module_utils/urls.py from ansible core 11 years ago
Iiro Uusitalo 4b1b10fa20 Refactor force basic auth, now all modules which use fetch_url() can use force_basic_auth 11 years ago
Hennadiy (Gena) Verkh f190f98b06 Update uri.py
Added methods 'TRACE', 'CONNECT' from https://www.rfc-editor.org/rfc/rfc2616.txt, section 5.1.1
Added method 'REFRESH'
11 years ago
Toshio Kuratomi 27e1aa7d10 Merge pull request #1634 from Eronarn/devel
Change uri debug example
11 years ago
Brian Coca b3d5479612 Merge pull request #687 from abackstrom/sha256-mismatch-redownload
get_url: Force redownload if sha256sum does not match
11 years ago
James Meickle 73390f8ecc Change uri debug example 11 years ago
Toshio Kuratomi 280ccfbb78 Add note about redirects proxies
Fixes #1574
11 years ago
Toshio Kuratomi 4519dd5f4d Small cleanups.
* Import url(lib|parse|lib2) if needed by the module rather than relying
  on module_utils.urls to do so.
* Remove stdlib modules from requirements
* Use the if __name__ conditional for invoking main()
11 years ago