Brian Coca
7d073bdd17
Merge pull request #13345 from amenonsen/extract
...
Add an 'extract' filter
2015-12-03 11:19:06 -08:00
James Cammarata
5f83a6aeda
Properly default remote_user for delegated-to hosts
...
Fixes #13323
2015-12-03 11:31:33 -05:00
Toshio Kuratomi
e201a255d1
Revert "Make sudo+requiretty and ANSIBLE_PIPELINING work together"
...
This reverts commit f488de8599
.
Reverting for now due to hard to pin down bugs: #13410 #13411
2015-12-03 08:01:05 -08:00
Toshio Kuratomi
fbb63d66e7
Revert "Note crab and mgedmin's work to make pipelining compatible with sudo+requiretty"
...
This reverts commit 1d8e178732
.
Reverting for now due to hard to pin down bugs: #13410 #13411
2015-12-03 08:00:28 -08:00
Toshio Kuratomi
9caa2b0452
Revert "Update docs and example config for requiretty + pipelining change"
...
This reverts commit f873cc0fb5
.
Reverting pipelining change for now due to hard to pin down bugs: #13410 #13411
2015-12-03 07:59:23 -08:00
Toshio Kuratomi
e00012994e
Also some unicode tests for return_values()
2015-12-02 21:09:53 -08:00
Toshio Kuratomi
5fdfe6a0f2
Add some test data that has unicode values
2015-12-02 21:07:41 -08:00
Toshio Kuratomi
9b81c35d06
Don't compare or merge str with unicode
...
Fixes #13387
2015-12-02 20:53:50 -08:00
Brian Coca
b85e6e008d
updated version that makefile uses
2015-12-02 16:46:12 -08:00
Brian Coca
2a33a13a20
updated port version
2015-12-02 16:44:57 -08:00
Toshio Kuratomi
ac54ac618c
Something's strange... let's see if python2.6 is really the same now...
2015-12-02 14:49:28 -08:00
Brian Coca
9bf1aaf7f5
Merge pull request #13391 from bcoca/api_docs_update
...
updated docs for 2.0 api
2015-12-02 12:11:16 -08:00
Brian Coca
6559616a04
updated docs for 2.0 api
2015-12-02 12:03:07 -08:00
James Cammarata
a183972477
Don't use play vars in HostVars
...
Fixes #13398
2015-12-02 14:16:47 -05:00
James Cammarata
8ff67e0494
Default msg param to AnsibleError to avoid serialization problems
2015-12-02 14:16:47 -05:00
Toshio Kuratomi
eb7db067f9
Fix template test results on python2.6
2015-12-02 10:32:10 -08:00
Brian Coca
abeec3c8b5
Merge pull request #13322 from muffl0n/docs_regex_replace_named_groups
...
Add example for regex_replace using named groups
2015-12-02 09:43:45 -08:00
James Cammarata
5f1f2acfea
Merge pull request #13405 from sivel/v2-playbook-on-start
...
Get v2_playbook_on_start working
2015-12-02 12:40:24 -05:00
Matt Martz
384b2e0234
Get v2_playbook_on_start working
...
* Move self._tqm.load_callbacks() earlier to ensure that v2_on_playbook_start can fire
* Pass the playbook instance to v2_on_playbook_start
* Add a _file_name instance attribute to the playbook
2015-12-02 11:29:51 -06:00
Brian Coca
7708661270
Merge pull request #13402 from amenonsen/expandpath
...
Use CLI.expand_tilde also for the vault --output file
2015-12-02 09:23:46 -08:00
Sandra Wills
e54bf43cfc
Merge pull request #13404 from jlmitch5/docs_ads
...
fixed docsite rail ad
2015-12-02 12:19:32 -05:00
John Mitchell
76098823cd
fixed docsite rail ad
2015-12-02 12:18:18 -05:00
Brian Coca
d3d8487729
added remote environment var setting to changelog
2015-12-02 09:08:48 -08:00
Brian Coca
94d2958e1f
Merge pull request #13403 from amenonsen/module-lang
...
Make module_lang default to whatever LANG is set to on the control node
2015-12-02 09:06:57 -08:00
Brian Coca
ffb97e2202
Merge pull request #13400 from sivel/role-assertion-error
...
Catch additional assertion errors for load_list_of_blocks
2015-12-02 09:04:37 -08:00
Abhijit Menon-Sen
0d16d16ab8
Make module_lang default to whatever LANG is set to on the control node
2015-12-02 22:25:10 +05:30
Abhijit Menon-Sen
fac7626230
Use CLI.expand_tilde also for the vault --output file
2015-12-02 22:08:37 +05:30
Matt Martz
ce54a59cdc
Catch additional assertion errors for load_list_of_blocks
2015-12-02 10:35:20 -06:00
Brian Coca
53cd802251
better error on invalid task lists
2015-12-02 08:14:20 -08:00
Brian Coca
df16d26b33
Merge pull request #13393 from eest/openbsd_find_delete
...
Replace -delete with portable -exec rm {} \;
2015-12-02 08:02:06 -08:00
James Cammarata
f7dc5a9515
Minor tweak and comment addition to 974a0ce3
2015-12-02 09:11:08 -05:00
James Cammarata
f1d53a87e5
Merge pull request #13394 from Christoph-D/issue-13370
...
Fix #13370
2015-12-02 08:57:09 -05:00
Abhijit Menon-Sen
8cf1815867
Add an 'extract' filter
...
At its most basic, this is nothing more than an array or hash lookup,
but when used in conjunction with map, it is very useful. For example,
while constructing an "ssh-keyscan …" command to update known_hosts on
all hosts in a group, one can get a list of IP addresses with:
groups['x']|map('extract', hostvars, 'ec2_ip_address')|list
This returns hostvars[a].ec2_ip_address, hostvars[b].ec2_ip_address, and
so on. You can even specify an array of keys for a recursive lookup, and
mix string and integer keys depending on what you're looking up:
['localhost']|map('extract', hostvars, ['vars','group_names',0])|first
== hostvars['localhost']['vars']['group_names'][0]
== 'ungrouped'
Includes documentation and tests.
2015-12-02 18:16:38 +05:30
Matt Martz
5be98ca91e
Merge pull request #13395 from amenonsen/bump-version
...
Bump version in devel now that stable-2.0 has been branched
2015-12-02 06:37:33 -06:00
Abhijit Menon-Sen
22381be253
Bump version in devel now that stable-2.0 has been branched
2015-12-02 17:57:53 +05:30
Christoph Dittmann
267199fdd5
Update debug messages and comments
...
The comment was taken literally from lib/plugins/strategy/linear.py and
makes no sense in free.py where we have no noop tasks.
Also update the debug messages.
2015-12-02 11:17:24 +01:00
Christoph Dittmann
c6e400fbea
Fix issue #13370
...
all_blocks is referenced after the loop over included_files, so it needs
to be initialized before this loop, not inside.
2015-12-02 11:17:24 +01:00
Christoph Dittmann
9a6ae1d62a
Let PlayIterator.add_tasks accept empty task lists
...
PlayIterator.add_tasks raised an error when trying to add an empty task
list. This was the root cause of ansible issue #13370 .
2015-12-02 11:17:24 +01:00
Patrik Lundin
9f9944e355
Replace -delete with portable -exec rm {} \;
...
Needed on OpenBSD which does not support -delete.
2015-12-02 11:06:09 +01:00
Brian Coca
f78e27b082
updated new module list
...
added missing modules and fixed alphabetical ordering
2015-12-01 23:52:47 -08:00
Brian Coca
b92cb93539
unconditionally set vars on init to avoid issues with var precedence
2015-12-01 21:24:46 -08:00
Brian Coca
c03afccc05
reformated test, changed big assert to with_items
...
much easier to see the individual condition that causes the failure
when using with_items and evaluating each part of the assert individually
2015-12-01 21:11:12 -08:00
Brian Coca
a1e8050760
Merge pull request #13389 from privateip/feature_eapi_shared_module
...
fixes a syntax issue with module_utils/eapi.py
2015-12-01 20:45:38 -08:00
Peter Sprygada
2491afc8b6
fixes a syntax issue with module_utils/eapi.py
...
This patch fixes an issue with the common args dict in the eapi shared
module. This patch is required for the eapi shared module to be properly
imported and is therefore should be applied to all instances.
2015-12-01 23:34:59 -05:00
Brian Coca
8c630406c9
Merge pull request #13357 from privateip/feature_ssh_shared_module
...
initial add of ssh shared module.
2015-12-01 19:15:03 -08:00
Brian Coca
923b5467e3
Merge pull request #13354 from privateip/feature_eapi
...
adds device common argument to shared module
2015-12-01 19:14:07 -08:00
Brian Coca
574d7be8d5
Merge pull request #13358 from privateip/feature_ios_shared_module
...
Feature ios shared module
2015-12-01 19:04:24 -08:00
Brian Coca
afefaff1a7
Merge pull request #13382 from mscherer/doc_with_inventory
...
Add a documentation on how to loop over all inventory host
2015-12-01 18:33:59 -08:00
Brian Coca
e13c3d4c72
Merge pull request #13383 from mscherer/bugfix_style
...
Remove empty line breaking the formatting of the title
2015-12-01 18:33:16 -08:00
Peter Sprygada
93cd7a2a5f
adds module create function for eapi.py shared module
...
This commit changes the way modules create an instance of AnsibleModule to
now use a common function, eapi_module. This function will now automatically
append the common argument spec to the module argument_spec. Module
arguments can override common module arguments
2015-12-01 20:00:41 -05:00