Adrian Likins
9596b9218c
Specify run_command decode error style as arg ( #17886 )
...
* Specify run_command decode error style as arg
Instead of getting the stdout/stderr text from
run_command, and then decoding to utf-8 with a
particular error scheme, use the 'errors' arg
to run_command so it does that itself.
* Use 'surrogate_or_replace' instead of 'replace'
For the text decoding error scheme in run_command calls.
* Let the local_facts run_command use default errors
* fix typo
(cherry picked from commit d0bdfc2abb
)
2016-10-04 06:25:01 -07:00
John R Barker
66ebe7a461
asa_template wasn't ever officially released
...
asa_template was added during 2.2 development, and removed before 2.2 hit RC1 so no need to give notice of deprecation.
2016-10-04 14:07:55 +01:00
James Cammarata
6a76d7fbef
Check for substates in is_failed before checking main state failure
...
Fixes #17882
(cherry picked from commit d09f57fb3a
)
2016-10-04 01:43:27 -05:00
Toshio Kuratomi
b878c47d5e
Fix for run_command tests now that it returns native strings
...
(cherry picked from commit 08a58ae025
)
2016-10-03 18:46:55 -07:00
Toshio Kuratomi
f7d3ed6eb3
Update submodule refs
2016-10-03 18:46:36 -07:00
Toshio Kuratomi
8456686f4b
Make run_command return native strings
...
This changes the return value on python3 Return value on python2 was
already byte strings (which is the native str type there.)
(cherry picked from commit ddd20627a4
)
2016-10-03 18:46:36 -07:00
Brian Coca
fb4c0a085f
no need for warnings in first_found
...
(cherry picked from commit 125a8d3c65
)
2016-10-03 20:23:41 -04:00
Brian Coca
6b85c31fdf
fix for include_role conflating vars/directives
...
(cherry picked from commit 54ce6a9b7a
)
2016-10-03 19:25:22 -04:00
Brian Coca
767dba8f24
include_role process name from options, not task
...
(cherry picked from commit d4b2ea3ec8
)
2016-10-03 18:30:08 -04:00
Adrian Likins
5109d50adb
cast/copy keys() to list to avoid py3 errors
...
In py3, dict.keys() is a view and not a copy of the
dicts keys, so attempting to delete items from the dict
while iterating over the keys results int
RuntimeError: dictionary changed size during iteration
Resolve by casting .keys() to a list() type.
(cherry picked from commit 2addc09050
)
2016-10-03 13:12:41 -07:00
Adrian Likins
f4b1d87ec0
open anziballs payload 'wb' for py3
...
(cherry picked from commit 9f673e0725
)
2016-10-03 13:08:30 -07:00
Matt Clay
ae52943719
Update default branch for generate-tests.
2016-10-03 12:34:51 -07:00
Matt Clay
6ba009f913
Update submodule refs.
2016-10-03 12:16:04 -07:00
Matt Clay
52173e7707
Update CI config for stable-2.2 branch. ( #17880 )
2016-10-03 11:39:01 -07:00
James Cammarata
44faad0593
New release v2.2.0.0-0.1.rc1
2016-10-03 10:00:08 -05:00
James Cammarata
78a02555e5
Updating CHANGELOG and release versions for 2.1.2
2016-10-03 09:31:12 -05:00
Matt Davis
64d9de6b25
bump core submodule ref
2016-10-03 07:28:19 -07:00
John R Barker
4643bb4c6a
New modules ( #17870 )
...
Full review of new modules
2016-10-03 15:08:35 +01:00
Peter Sprygada
15ee97d214
added network updates to CHANGELOG
2016-10-03 09:01:01 -04:00
Brian Coca
814e3069b9
added forman callback plugin to changelog
2016-10-03 08:46:48 -04:00
Brian Coca
49ce0c8bac
only change dir to playdir if local
...
fixes #17869
fixes #17770
2016-10-03 08:44:25 -04:00
Toshio Kuratomi
5bc3cb278c
Remove unicode escape ( #17866 )
...
* Remove unicode-escape which is not present on python3
Alternative fix for #17305
* Enable the assemble test on python3
* Fix other problems with assemble on python3
2016-10-02 22:12:51 -07:00
Toshio Kuratomi
ddb3f91562
Update submodule refs
2016-10-02 21:54:21 -07:00
Guido Günther
14a9bd6a1c
Add foreman callback plugin ( #17141 )
2016-10-03 00:12:12 -04:00
Toshio Kuratomi
f72b123584
On python3, subprocess needs another arg to pass extra file descriptors
2016-10-02 15:29:54 -07:00
Toshio Kuratomi
64c446d9c0
Normalize text and byte type in the ssh plugin helper method that builds up an ssh command ( #17860 )
...
Mostly cleanups to make the code more efficient, more pythonic, and obey
the unicode sandwich strategy more but also Fixes #17832
2016-10-02 14:55:55 -07:00
Peter Sprygada
b0cd624aef
fixes issue with run_commands raising error ( #17861 )
...
The junos run_commands() method should raise an error when an RpcError is
returned but didn't when using display=text. This fixes that error
2016-10-02 16:47:22 -04:00
Peter Sprygada
50c445c356
switches the kickstart arg from True to False for eos ( #17858 )
...
The kickstart kwarg should be set to False for eos based devices and
was set to True. This change cleans up problems loading json output
from cli commands
All eos_command test cases are now passing successfully
fixes #17441
2016-10-02 15:03:03 -04:00
Peter Sprygada
512ef49c8a
adds new exception for adding condition statements to Conditional ( #17859 )
...
When adding condition statements, the Conditional instance will now generate
an AddConditionError if is unable to map the condition to a function in the
instance
2016-10-02 14:47:58 -04:00
Matt Davis
a4e5187661
bump core submodule ref for windows async_wrapper bugfix
2016-10-02 08:55:44 -07:00
Matt Davis
aa0ad073b8
bugfixes to JSON junk filter, added unit/integration tests to exercise ( #17834 )
2016-10-02 08:03:42 -07:00
James Cammarata
657506cddd
Ensure the "attempts" key is set in the final result for do/until loops
...
Fixes #17258
2016-10-02 01:06:13 -05:00
Senthil Kumar Ganesan
7e0074263d
Remove the dellosX_template module ( #17836 )
2016-10-01 14:31:51 -04:00
Matt Clay
21857e8618
Disable privileged mode on Shippable. ( #17844 )
2016-09-30 22:06:28 -07:00
Matt Davis
60b322e3ca
bump core submodule ref for async_wrapper fixes
2016-09-30 16:17:45 -07:00
Indrajit Raychaudhuri
becb4765c3
Add homebrew in squash_actions list ( #16966 )
...
`homebrew`, like other package modules in the existing `squash_actions` list can
benefit from `with_items` loops optimization.
2016-09-30 18:07:09 -04:00
Brian Coca
dfff608ceb
dzdo prompt fix
...
fixed tests
dzdo has 2 paths now, with and w/o password
fixes #17838
2016-09-30 17:58:19 -04:00
Brian Coca
6008fbd5cf
fix fact gathering flag
2016-09-30 17:58:19 -04:00
Brian Coca
24e81ddd1c
add ssh error message to failure
2016-09-30 17:58:19 -04:00
James Cammarata
e4ee9de3f4
Fixing parentage of include_role objects for param inheritance
...
Fixes #17686
2016-09-30 16:05:43 -05:00
Peter Sprygada
6be2f0bded
fixes unicode conversation from junos get_config() method ( #17841 )
...
The junos config should convert the returning configuration to unicode
not str. This fixes that issue.
2016-09-30 16:31:25 -04:00
Peter Sprygada
5b4f3b1eda
adds better error handling when conditional fails ( #17839 )
...
When the conditional cannot extract a value from the result string,
an unhandled exception would be raised. This fix now gracefully handles
the exception
2016-09-30 16:25:40 -04:00
Peter Sprygada
9faf56a345
fixes issue when calling save_config() and transport is nxapi ( #17835 )
...
An unhandled exeception is raised with using nxapi transport and setting
the save argument to true. This fix will allow the configuration to be
saved regardless of the transport.
fixes ansible/ansible-modules-core#5094
2016-09-30 15:00:10 -04:00
scottb
d88025f0cb
Merge pull request #17833 from resmo/docs/fix_loops
...
docsite: various fixes in loops doc
2016-09-30 11:26:46 -07:00
Matt Davis
b427818f02
remove Windows async doc exclusion
2016-09-30 10:22:39 -07:00
Trond Hindenes
35fba5718d
Bugfix: fixes new-alias bug when debugging powershell ( #17816 )
2016-09-30 09:46:06 -07:00
Makc
c6fa701ab1
jabber callback ( #16981 )
...
* jabber callback
* delete empty lines
* grammar fix
* fix: do not print error when jabber callback disabled
* change callback version 1 -> 2
2016-09-30 12:06:53 -04:00
Chris Houseknecht
e6eed3c3db
Merge pull request #17818 from chouseknecht/devel
...
Parse role dependencies consistently
2016-09-30 10:03:32 -04:00
Rene Moser
26bc8ab47a
docsite: various fixes in loops doc
...
- "new in version ..." did not always show up
- indentation in examples
- minor style cleanup (whitespace)
2016-09-30 16:01:56 +02:00
jctanner
8095c3951a
vmware_inventory: Make the ceritifate check default, and create a config option ( #17830 )
...
Fixes #17811
2016-09-30 09:06:02 -04:00