Brian Coca
e3a58a883a
Merge pull request #13166 from defionscode/ec2_util_boto3
...
Patch to remove dependency on boto when only using boto3
9 years ago
Jonathan Davila
041e1979c4
Boto3 error handle fix
9 years ago
Brian Coca
ac1d1673be
adhoc now respects limit when listing hosts
...
also removed cruft about localhost as if used it is specified inline
fixes #13848
9 years ago
Jonathan Davila
f95652e7db
Merge remote-tracking branch 'upstream/devel' into ec2_util_boto3
9 years ago
Brian Coca
87fe32319f
ensure stdout callback alwasy is loaded first
...
it is now called for every event prior to any other callbacks
fixes #14114
9 years ago
Brian Coca
af88e34831
better error when host inventory script isnt dict
9 years ago
Brian Coca
6e716b177e
add webdocs as alias
9 years ago
Brian Coca
e79f3114d1
Merge pull request #14087 from grahamu/changelog_ssh_deprecated
...
Note "ssh" deprecation for inventory variables
9 years ago
Brian Coca
4dc3441cdb
Merge pull request #14102 from senk/fix_docu
...
Fixes documentation formatting
9 years ago
Brian Coca
9abb107044
Merge pull request #14110 from infracaninophile/devel
...
Change example to use pkg rather than the obsolete pkg_add
9 years ago
Matthew Seaman
043b2cbcb4
Change example to use pkg rather than the obsolete pkg_add
...
pkg_add has been obsoleted in all released versions of FreeBSD for
several years. Change the example to use the appropriate pkg(8)
command line.
9 years ago
James Cammarata
a8ffa02134
Make sure blocks use their parents dependency chains
...
Fixes a bug inroduced in fb797a9
where included tasks in a role
were not being executed because the child blocks had no dep chain
set.
9 years ago
Robin Naundorf
6cc7f7890f
Fixes documentation formatting
...
Fixes documentation formatting
9 years ago
James Cammarata
2b02e8e2b4
Allow certain base attributes to be used as role params
...
Role definitions typically require params to be different from those
which are specified as FieldAttributes on the playbook classes used
for roles, however a certain subset should be allowed (typically those
used for connection stuff).
Fixes #14095
9 years ago
Graham Ullrich
f82d9facc2
Update CHANGELOG.md
9 years ago
James Cammarata
6b166a1048
Merge pull request #14071 from rozha/devel
...
Fix server numbers in first 10 next 10 example
9 years ago
James Cammarata
46ede563dd
Use templated handler name during callback
...
Fixes #14082
9 years ago
James Cammarata
fb797a9e77
Fixing role dependency chain creation
...
The dep chain for roles created during the compile step had bugs, in
which the dep chain was overwriten and the original tasks in the role
were not assigned a dep chain. This lead to problems in determining
whether roles had already run when in a "diamond" structure, and in
some cases roles were not correctly getting variables from parents.
Fixes #14046
9 years ago
Matt Martz
abecb520ad
Merge pull request #14054 from gregdek/devel
...
Add Python 2.4 requirement to module checklist
9 years ago
Ilya Novickov
46bd5a0d9c
Fix server numbers in first 10 next 10 example
9 years ago
James Cammarata
4651155942
Fix bug with any_errors_fatal where task was not available
9 years ago
James Cammarata
d02dee37a1
Disallow setting state on template tasks
...
Fixes #14056
9 years ago
Toshio Kuratomi
ecf867af6f
Update submodule refs
9 years ago
Greg DeKoenigsberg
f3336fba44
Tweaking Python 2.4 requirement
9 years ago
Greg DeKoenigsberg
981e9c44ba
Put Python 2.4 in checklist
...
It's in the travis check, but we don't spell it out explicitly in the guidelines.
9 years ago
Greg DeKoenigsberg
134873bada
Merge pull request #1 from ansible/devel
...
sync to head
9 years ago
Toshio Kuratomi
f594cc0a5b
Merge pull request #13993 from towolf/avoid_json_to_unicode
...
Avoid recursively checking JSON inventory for Unicode
9 years ago
Tobias Wolf
d6ae9e2c29
Avoid recursively checking JSON inventory for Unicode
...
by moving to en-bloc unicode conversion to act on scripts stdout
Both python-json and simplejson always return unicode strings when using
their loads() method on unicode strings. This is true at least since
2009. This makes checking each substring unnecessary, because we do not
need to recursively check the strings contained in the inventory dict
later one-by-one
This commit makes parsing of large dynamic inventory at least 2 seconds
faster.
cf: https://github.com/towolf/ansible-large-inventory-testcase
9 years ago
Brian Coca
f26adcc7da
avoid shredding empty files, also x/0
...
also cleaned up unused import and exception var
9 years ago
James Cammarata
627dec716b
Template the run_once value in the linear strategy as we use it there
...
This is pre-post_validation, so we have to template it on the fly
as we use it to determine if we bypass the host loop.
Fixes #11876
9 years ago
James Cammarata
365c5b23ce
Re-add cache clearing call to Inventory init
...
This prevents a bug where the existing cache outside of the class
is not cleared when creating a new Inventory object. This only really
affects people using the API directly right now, but wanted to fix it
to prevent weird errors from popping up.
9 years ago
Brian Coca
c2ac1507ea
corrected host/group match in inventory_hostnames
...
now the lookup works when using ! and & operators
fixes #13997
9 years ago
James Cammarata
9b05a670c7
Merge pull request #14031 from selivan/devel
...
plugins/strategy: added significant details to parser error message.
9 years ago
Matt Martz
3bda79ca96
Merge pull request #14030 from matburt/add_rax_inventory_custom_cache_timeout
...
Add a config option for rackspace inventory cache
9 years ago
James Cammarata
54cde0d082
Standardize removal of BECOME-SUCCESS method and use it for async too
...
Fixes #13965
Fixes #13971
9 years ago
Matthew Jones
a1318e1664
Add rax cache age ini documentation
9 years ago
Toshio Kuratomi
61009604e3
Update submodules to bring in yum fix
9 years ago
Toshio Kuratomi
d97d28ecb0
Merge pull request #14025 from ansible/run_command-env-rework
...
rework run_command's env setting to not change os.environ for the res…
9 years ago
Selivanov Pavel
3201f5d90e
plugins/strategy: added significant details to parser error message.
...
See discussion at
https://github.com/ansible/ansible/issues/13753
9 years ago
Matthew Jones
a106382786
Add a config option for rackspace inventory cache
...
Adding a config and environment variable option for tuning the cache age
check in the rackspace inventory module
9 years ago
Toshio Kuratomi
a68d90a71a
rework run_command's env setting to not change os.environ for the rest of the module.
...
New param to run_command to modify the environment for just this invocation.
Documentation and comment adjustments.
9 years ago
Matt Martz
d49b11e996
Only use os.path.basename if get_file_content returned a value, and ensure that service_mgr has line endings stripped. Fixes #14026
9 years ago
James Cammarata
1894a83772
Merge pull request #14021 from gregdek/devel
...
Adding docs help for testing modules
9 years ago
Brian Coca
cc4506b451
Merge pull request #14006 from bcoca/always_shell_again
...
go back to always wrapping commands in shell
9 years ago
James Cammarata
ac89b0de7a
Fix incorrect handling of any_errors_fatal in the linear strategy
...
Instead of bombing out of the strategy, we now properly mark hosts failed
so that the play iterator can handle block rescue/always properly.
Fixes #14024
9 years ago
Greg DeKoenigsberg
a10e15c765
Update developing_test_pr.rst
9 years ago
Greg DeKoenigsberg
a4f91c2c53
format fix for github markup
9 years ago
Greg DeKoenigsberg
b900c104b9
Adding submodule help
9 years ago
James Cammarata
e3a6accc1d
Forward conditionals onto included plays when conditional eval errors
...
When using a playbook-level include, we now catch any errors raised during
the conditional evaluation step and set a flag to indicate we need to pass
those conditionals on to the included play (most likely because they contain
inventory variables for evaluation).
Fixes #14003
9 years ago
James Cammarata
c8bbdd6b39
Don't assign both parent blocks and task includes to blocks
...
This causes problems when fetching parent attributes, as the include
was being skipped because the parent block would fetch the attribute
from the parent play first.
Fixes #13872
9 years ago