summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Consistent naming of Arista EOS devicegundalow-patch-2John R Barker2016-08-311-1/+1
|
* Merge pull request #4608 from privateip/ios_commandPeter Sprygada2016-08-301-4/+2
|\ | | | | removes output keyword from command in ios_command
| * removes output keyword from command in ios_commandPeter Sprygada2016-08-301-4/+2
| | | | | | | | | | | | IOS devices only support a single command output which is structured text. This removes the ability to specify the command output format when providing complex arguments to the commands
* | update nxos_nxapi module with minor enhancements (#4573)Peter Sprygada2016-08-301-217/+253
| | | | | | | | | | | | | | * added new config argument * added states present and absent * update to use network shared modules Tested on NXOS 7.3(0)D1(1)
* | Fixes get_url examples in docs and applies native YAML syntax. (#4474)Timothy Appnel2016-08-301-8/+27
| |
* | digital_ocean_tag name is a required fieldJohn R Barker2016-08-301-0/+1
| | | | | | | | Spotted during final review of https://github.com/ansible/ansible-modules-core/pull/4218/files Simple to change, so fixing post merge
* | Digitalocean tags (replaces #4209) (#4218)Victor Volle2016-08-301-0/+256
| | | | | | | | | | | | | | | | * Fixes #4117: Add DigitalOcean Tag support * Add GPLv3 license header and RETURN documentation * ansible.module_utils.urls instead of "requests"
* | Fixes bug #4546 - Made password optional (#4574)Arun prasath2016-08-301-4/+0
| |
* | Fix #4412: os_security_group_rule support numbered protocols (#4444)David J Peacock2016-08-301-2/+8
| |
* | Remove spurious `changed` state on iam_policy module (#4381)Ryan Brown2016-08-301-12/+11
| | | | | | | | | | | | | | | | | | | | | | Due to a mixup of the group/role/user and policy names, policies with the same name as the group/role/user they are attached to would never be updated after creation. To fix that, we needed two changes to the logic of policy comparison: - Compare the new policy name to *all* matching policies, not just the first in lexicographical order - Compare the new policy name to the matching ones, not to the IAM object the policy is attached to
* | Shows messages for uncaught exceptions from called modules in async_wrapper ↵James S. Martin2016-08-301-0/+1
| | | | | | | | output. (#4591)
* | Fixes #3144 (#4305)Rick Mendes2016-08-301-10/+13
| |
* | Fix change status on django_manage collectstatic. (#4239)Vytis Banaitis2016-08-301-1/+1
| | | | | | Ignore blank lines in collectstatic output.
* | gem: add support for --env-shebang (#4377)Guillaume Delpierre2016-08-301-1/+10
| | | | | | | | | | | | * gem: add support for --env-shebang * fix version added
* | Fixes #2322 fix for missing append check on Darwin systems (#4256)Levi Morales2016-08-301-6/+7
| |
* | Implemented file content diff for replace module (#4479)Evan Kaufman2016-08-301-1/+11
| |
* | Use named parameters in new_droplet method call (#4483)Matías Pizarro2016-08-301-1/+3
| | | | | | | | This mirrors the original method signature and guards against any change in order parameter
* | Remove colors from git-branch output for correct local search (#4545)Anton Onufriev2016-08-301-1/+1
| | | | | | | | | | We got an error while switching on existent local branch because git module can not find branch in function get_branches if we have color.branch=always in git config.
* | Port the module to run on python 3 (#4496)Michael Scherer2016-08-291-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One of the usual issue is that run_command return bytes, so we have to adapt the string to either be bytes too, or convert to string. This result into that kind of traceback: Traceback (most recent call last): File \"/tmp/ansible_ej32yu2w/ansible_module_git.py\", line 1009, in <module> main() File \"/tmp/ansible_ej32yu2w/ansible_module_git.py\", line 873, in main git_version_used = git_version(git_path, module) File \"/tmp/ansible_ej32yu2w/ansible_module_git.py\", line 788, in git_version rematch = re.search('git version (.*)$', out) File \"/usr/lib64/python3.5/re.py\", line 173, in search return _compile(pattern, flags).search(string) TypeError: cannot use a string pattern on a bytes-like object Another issue is filter being a object instead of a list.
* | Merge pull request #3950 from grybak-arista/eos_exit_fixPeter Sprygada2016-08-291-1/+1
|\ \ | |/ |/| Move call to filter_exit out of command execution block
| * Move call to filter_exit out of command execution blockGary Rybak2016-06-141-1/+1
| | | | | | | | | | to prevent setting 'changed' on a command list that is completely filtered (empty).
* | fix error in documentation for stat checksum (#4582)James Pharaoh2016-08-271-2/+1
| |
* | Merge pull request #4578 from privateip/nxos_factsPeter Sprygada2016-08-271-92/+82
|\ \ | | | | | | convert nxos_facts map from dict to frozenset
| * | convert nxos_facts map from dict to frozensetPeter Sprygada2016-08-271-92/+82
| | | | | | | | | | | | | | | | | | | | | * key maps are now frozenset instead of dict objects * FactsBase now includes utility functions for transforming json data structures Tested on NXOS 7.3(0)D1(1)
* | | Replaced use of bare variables with full variable syntax (#4149)Ilja Bauer2016-08-271-2/+2
| | |
* | | Clarify what checksum algorithm is used by copy modules (#4198)Gennady Trafimenkov2016-08-272-2/+2
| | |
* | | Fix minor syntax error in authorized_key module doc (#4491)Ali Ok2016-08-271-1/+1
| | |
* | | Clarify that refspec is needed to checkout a git hash (#4564)Robin Roth2016-08-271-2/+3
| | | | | | | | | fixes #1531
* | | Convert command output to native string (#4559)Michael Scherer2016-08-271-4/+5
| | | | | | | | | | | | Without it, the module always return changed on python3, which is harmless but add noise and can have some side effects.
* | | Merge pull request #4577 from chouseknecht/develChris Houseknecht2016-08-271-4/+6
|\ \ \ | | | | | | | | Fix container labels expected vs actual comparison.
| * | | Fix container labels expected vs actual comparison.chouseknecht2016-08-271-4/+6
|/ / /
* | | added docs for vars_from/defaults_fromBrian Coca2016-08-261-0/+10
|/ /
* | Merge pull request #4565 from privateip/iosxr_factsPeter Sprygada2016-08-261-0/+431
|\ \ | | | | | | add new iosxr_facts module for fact collection from XR devices
| * | add new iosxr_facts module for fact collection from XR devicesPeter Sprygada2016-08-261-0/+431
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds support for std network facts * adds support for default facts subset * adds support for config facts subset * adds support for interface facts subset * adds support for hardware facts subset Tested on IOS-XR 6.0.0
* | | Merge pull request #4563 from privateip/iosxr_configPeter Sprygada2016-08-261-75/+198
|\ \ \ | | | | | | | | update iosxr_config with new arguments
| * | | update iosxr_config with new argumentsPeter Sprygada2016-08-261-75/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add src argument to provide path to config file * add new choice to match used to ignore current running config * add update argument with choices merge, replace or check * add backup argument to backup current running config to control host * add comment argument to provide comment to commit * deprecated force argument, use match=none instead
* | | | Merge pull request #4566 from privateip/iosxr_templatePeter Sprygada2016-08-261-18/+14
|\ \ \ \ | | | | | | | | | | update iosxr_template to use network shared modules
| * | | | update iosxr_template to use network shared modulesPeter Sprygada2016-08-261-18/+14
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | This updates the iosxr_template module to make it work with the new shared network modules introduced in Ansible 2.2 Tested on IOSXR 6.0.0
* | | | Merge pull request #4567 from privateip/ios_templatePeter Sprygada2016-08-261-6/+5
|\ \ \ \ | | | | | | | | | | update ios_template module using refactored network shared modules
| * | | | update ios_template module using refactored network shared modulesPeter Sprygada2016-08-261-6/+5
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | This updates the ios_template module to work with the network shared modules introduced in Ansible 2.2 Tested in IOS 15.6(1)T
* | | | Merge pull request #4568 from privateip/eos_templatePeter Sprygada2016-08-261-12/+10
|\ \ \ \ | | | | | | | | | | update eos_template for network shared module
| * | | | update eos_template for network shared modulePeter Sprygada2016-08-261-12/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This updates the eos_template module to work with the changes introduced in the network shared module in Ansible 2.2 Tested on EOS 4.15.4F
* | | | | Merge pull request #4569 from privateip/nxos_templatePeter Sprygada2016-08-261-16/+15
|\ \ \ \ \ | | | | | | | | | | | | update nxos_template module with network shared module changes
| * | | | | update nxos_template module with network shared module changesPeter Sprygada2016-08-261-16/+15
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | This updates the nxos_template module to work with the network shared modules introduced in Ansible 2.2 Tested on NXOS 7.3(0)D1(1)
* | | | | Merge pull request #4549 from privateip/nxos_factsPeter Sprygada2016-08-261-196/+464
|\ \ \ \ \ | | | | | | | | | | | | updates nxos_facts with more fact collections
| * | | | | updates nxos_facts with more fact collectionsPeter Sprygada2016-08-261-196/+464
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds support for std network facts * adds support for default facts subset * adds support for config facts subset * adds support for interface facts subset * adds support for hardware facts subset * maintains backwards capabilitity with 2.1 facts module Tested on NXOS 7.3(0)D1(1)
* | | | | | updated include_role docs to latest infoBrian Coca2016-08-261-1/+4
| |_|/ / / |/| | | |
* | | | | 1st draft of include role docsBrian Coca2016-08-261-0/+56
| |/ / / |/| | |
* | | | Merge pull request #4551 from privateip/eos_factsPeter Sprygada2016-08-261-0/+381
|\ \ \ \ | |_|/ / |/| | | add new eos_facts module for fact collect of EOS nodes
| * | | add new eos_facts module for fact collect of EOS nodesPeter Sprygada2016-08-261-0/+381
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds support for std network facts * adds support for default facts subset * adds support for config facts subset * adds support for interface facts subset * adds support for hardware facts subset Tested on EOS 4.15.4F