Commit Graph

9583 Commits (c6d8cb6cab9fdfd9cd382048bbf419dfbc2dc164)
 

Author SHA1 Message Date
Tom Melendez c6d8cb6cab Added libcloud guard for Managed Instance Groups. (#4911) 9 years ago
Tom Melendez 454835622b GCE module examples update. Correct syntax, demonstrate other options and creation of multiple instances. (#5192) 9 years ago
Peter Sprygada 04b214852d fixes issue with collecting all filesystems in ios (#5248)
earlier versions of ios do not provide the all-filesystems argument.  This
fix will now only report on the flash filesystem for ios_facts

fixes #4712
9 years ago
Peter Sprygada 528ced6d12 ios_config will now explicitly disconnect from remote host (#5247)
The ios_config module will now explicitly send a disconnect to the
remote host at the conclusion of the module run

ref #5181
9 years ago
amitsi 0ffd423b07 Update pn_vlan (#5223)
removed name from an older file which got left out
9 years ago
Peter Sprygada d8d9ab8f6d removes automated backup of ios to flash due to errors (#5245)
The feature is extremely unstable right now and decision to pull
it out for 2.2.  Workaround is to do the same in the playbook
9 years ago
Peter Sprygada 9c25a7f97e fixes issue with pushing config to versions that do not support sessions (#5236)
earlier versions of eos do not support configuration sessions.  this change
will now check if sessions are supported and if not will fallback to
not using config sessions

fixes #4909
9 years ago
John Barker 275fa3f055 Correct functional typos 9 years ago
Peter Sprygada e6c039872f fixes bug with junos_config module not properly loading config (#5213)
This fixes two issues.  First, it fixes an issue with the junos_config
module not properly recognizing a file with set commands.  The second
bug would cause the diff_config() function to raise an exception due
to a blank line when splitting the config
9 years ago
Nathaniel Case f5c204005f nxos module cleanup (#5065)
* Fix imports on nxos_bgp* modules

* Fix imports on nxos_evpn* modules

* Cleanup issues for nxos_facts

* Shuffle imports for nxos_template

* Fix imports on nxos_ospf* modules

* Fix nxos_hsrp

As get_hsrp_groups_in_devices is not actually called anywhere, I presume this
change is reasonable.

* Fix imports on nxos_interface* modules

* Update nxos_static_route imports

* update nxos_vrf

* Update nxos_config imports
9 years ago
jjshoe 745b1857d6 Catch the rare condition where ami creation failed, this is critical when you have a 10-15 minute wait on ami creation. This rarely happens, and is tough to reproduce, but it does happen. (#5106) 9 years ago
Peter Sprygada b4763c297b updates docstring for sros modules (#5197) 9 years ago
adejongh 32d7d31105 Fixed incorrect usage of user_data variable (#5194) 9 years ago
Bill Nottingham 149f10f8b7 Fix deprecation notices. (#5180) 9 years ago
Elena Washington b4f6a25195 Make is so that the params param truly isn't required (fix for #3860) 9 years ago
Toshio Kuratomi 7e19d375b3 Emit an error message if six is not installed.
dopy 0.3.7 makes use of six but doesn't list it as a requirement.  This
means that people installing with pip won't get six installed, leading
to errors.  Upstream released dopy-0.3.7a to address that but pip thinks
that is an alpha release.  pip does not install alpha releases by
default so users aren't helped by that.

This change makes ansible emit a good error message in this case.

Fixes #4613
9 years ago
Toshio Kuratomi de9dc9b58a Fix exception hierarchy for digital ocean and some cleanups of pep8 style
Fixes #4613
9 years ago
Chris Houseknecht 705dfc6716 Merge pull request #5165 from chouseknecht/fix_docker_service
Surface Compose stdout on failure
9 years ago
Chris Houseknecht 0156cb942e Surface Compose stdout on failure
Signed-off-by: Chris Houseknecht <chouseknecht@ansible.com>
9 years ago
Chris Houseknecht f9f8af9fd6 Merge pull request #5159 from chouseknecht/fix_docker_service
Improved error handling for pull and build
9 years ago
Chris Houseknecht fba5883dd1 Improved enumeration of actions 9 years ago
Chris Houseknecht a10ce8ff25
Improved build and pull error handling 9 years ago
Gabriele a292a2c168 Fixing docstring (#5130) 9 years ago
Peter Sprygada aee430adf9 checks commit comment to make sure it doesn't exceed 60 characters (#5155)
The comment argument can be at most 60 characters per the IOS XR command
line.  If a comment is > 60 characters, the module will now gracefully error
and return a well formed message.

fixes 5146
9 years ago
John R Barker 6103082c25 Remove reference to parents parameter which doesn't exist (#5143) 9 years ago
John R Barker c5b2dafa59 Remove docs for commit which no longer exists (#5152) 9 years ago
Laurent Godet 0ee774ff15 Fix daemon_reload in systemd module 9 years ago
Toshio Kuratomi 95755d1859 We've changed run_command to return native_strings
on python3, this means that we don't get bytes back by default.  We
probably do want bytes here so modify our call to run_command so we get
bytes instead of text.
9 years ago
Ryan Brown f1c2739163 Handle termination_protection parameter when restarting instances (#5076)
* Restart EC2 instances with multiple network interfaces

A previous bug, #3234, caused instances with multiple ENI's to fail when being
started or stopped because sourceDestCheck is a per-interface attribute, but we
use the boto global access to it (which only works when there's a single ENI).

This patch handles a variant of that bug that only surfaced when restarting an
instance, and catches the same type of exception.

* Default termination_protection to None instead of False

AWS defaults the value of termination_protection to False, so we don't
need to explicitly send `False` when the user hasn't specified a
termination protection level. Before this patch, the below pair of tasks
would:

1. Create an instance (enabling termination_protection)
2. Restart that instance (disabling termination_protection)

Now, the default None value would prevent the restart task from
disabling termination_protection.

```
- name: make an EC2 instance
  ec2:
    vpc_subnet_id: {{ subnet  }}
    instance_type: t2.micro
    termination_protection: yes
    exact_count: 1
    count_tag:
       Name: TestInstance
    instance_tags:
       Name: TestInstance
    group_id: {{ group }}
    image: ami-7172b611
    wait: yes
- name: restart a protected EC2 instance
  ec2:
    vpc_subnet_id: {{ subnet  }}
    state: restarted
    instance_tags:
       Name: TestInstance
    group_id: {{ group }}
    image: ami-7172b611
    wait: yes
```
9 years ago
John R Barker 2779ead45b Add matching quotes (#5133)
Will fix broken syntax highlighting
9 years ago
Chris Houseknecht 90af27f20f Merge pull request #5050 from chouseknecht/devel
Fix intermittent image push error
9 years ago
Matt Davis 6c4d71a7fa fixed windows setup to run in check_mode 9 years ago
Toshio Kuratomi e4c5a13a7a Fix assemble module for python3 9 years ago
Peter Sprygada 857e1d374b adds exception handling for adding an invalid condition (#5125)
This change will now handle a problem adding a condition that raises
an AddConditionError and return a well formed error to the user.
9 years ago
Pradeep 4cb27d914f Typo Fix 9 years ago
Gabriele 423b4a5909 Adding more details on DOCSTRING about how to use the module (#5121) 9 years ago
Peter Sprygada 8afe2402db adds exception handling for AddConditionError (#5124)
AddConditionErrors are now handled by nxos_command and a well formed error
is returned from the module
9 years ago
Peter Sprygada 886757b4dd adds check for AddConditionError when adding conditional statements (#5123)
The Conditional instance will now raise the AddConditionError and this
change instructs eos_command to catch the error and return a nicely formed
error message
9 years ago
Matt Davis 4b3c892284 (re)add post-watchdog-launch sleep to Windows async_wrapper (#5122)
fixed apparent race where subprocess appears to never start
9 years ago
Gabriele d35cd80b7e Improving nxos_igmp_snooping (#5011) 9 years ago
Gabriele d47e38a8f9 Fixing nxos_igmp_interface (#5010) 9 years ago
Gabriele ef85fcb068 Fixing nxos_hsrp (#5009)
* Fixing nxos_hsrp

* Adding space after =
9 years ago
Senthil Kumar Ganesan dad21ce886 Remove the dellosX_template module (#5110) 9 years ago
Matt Davis 18f710fe32 add JSON junk filter to async_wrapper (#5107) 9 years ago
Peter Sprygada 2db006450d roll up of unicode fixes in junos modules (#5113)
* fixes junos_template (fixes #3962)
* fixes junos_config
9 years ago
Gabriele 201d041c4b Add ethernet-link-oam mapping to nxos_feature (#4956)
* Add ethernet-link-oam mapping

* Adding port-secutiry mapping

* Fixing command output format
9 years ago
Gabriele 21078d7462 Fixing nxos_vlan (#5005)
* Fixing nxos_vlan

* Fixing docstring

* Fixing docstring
9 years ago
Gabriele 813a14f046 Fixing nxos_aaa_server (#5002)
* Fixing command output formatting

* Fixing cmds
9 years ago
Gabriele 8da99d4e70 Fixing nxos_acl (#5006)
* Fixing nxos_acl

* Fixing nxos_acl
9 years ago
Gabriele c88404c119 Fixing nxos_acl_interface (#5007) 9 years ago