Brian Coca
7af5787030
Merge pull request #14717 from xiaket/devel
...
Fix __repr__ for meta tasks
10 years ago
Brian Coca
dd003a42b0
Merge pull request #14273 from resmo/for-ansible-2.1
...
[2.1] cloudstack: new generic code
10 years ago
Rene Moser
6c641fb6a8
cloudstack: add CS_HYPERVISORS constant
10 years ago
夏恺(Xia Kai)
d033c40e80
Make task repr really work for meta tasks.
...
Signed-off-by: 夏恺(Xia Kai) <xiaket@xiaket@gmail.com>
10 years ago
Brian Coca
0d1138e0a0
Merge pull request #14712 from chouseknecht/galaxy2_paging
...
Fix bug 14715: Galaxy CLI paging error
10 years ago
chouseknecht
42b2077c93
Fix bug 14715: Galaxy CLI paging error
10 years ago
nitzmahone
915037c628
update submodule refs
10 years ago
nitzmahone
ac54f66741
don't lock file when calculating checksum
10 years ago
Brian Coca
badc922c73
added warning for when host file doesn't exist
...
fixes #14692
10 years ago
Brian Coca
82d6a83cca
Merge pull request #14633 from Etherdaemon/fix_boto3_params
...
Fixup boto3_conn aws_session_token and verify
10 years ago
Brian Coca
157ebcfe0b
Merge pull request #14709 from bcoca/squash_fix_atp
...
added package to special 'squashable' fields
10 years ago
Brian Coca
67d5b77898
added package to special 'squashable' fields
...
apt has it as alias, this should fix https://github.com/ansible/ansible-modules-core/issues/3145
10 years ago
James Cammarata
7c049c3200
Fixing up jsonify and adding unit tests
10 years ago
Matt Martz
d0a717694f
Fix variable name in paramiko connection plugin
10 years ago
Matt Martz
e27eb73cba
sys.subversion unavailable in py24. Fixes #14704
10 years ago
Toshio Kuratomi
e01b6ad6b4
We are actually taking the repr of a string so we need separate to_bytes and repr calls
10 years ago
Toshio Kuratomi
b70bf3b056
Use io.StringIO and io.BytesIO instead of StringIO.StringIO for compat with py3
10 years ago
Toshio Kuratomi
c29f51804b
Fix mixing of bytes and str in module replacer (caused traceback on python3)
10 years ago
Brian Coca
512d3dd621
with_ loops always should want a list
10 years ago
Brian Coca
528f073bfa
update core subref
10 years ago
Toshio Kuratomi
1f2595306a
normalize path components to unicode before combining or operating on them
...
Note that this will break if we deal with non-utf8 paths. Fixing this
way because converting everythig to byte strings instead is a very
invasive task so it should be done as a specific feature to provide
support for non-utf8 paths at some point in the future (if needed).
10 years ago
Toshio Kuratomi
ef8bec18bf
Use a unicode format string so that we don't convert to byte strings
...
Fixes #14349
10 years ago
Brian Coca
ad5a6e7993
updated submodule refs
10 years ago
James Cammarata
771f1e31a9
Rework the way ad-hoc filters inventory to match how cli/playbook does it
10 years ago
Brian Coca
e2d2798a42
hosts can be list or string
10 years ago
Brian Coca
2d56293768
default play name to hosts entry
...
return to previous behaviour as now the name was left blank
10 years ago
James Cammarata
cd51ba7965
Use abspath instead of realpath for group/host vars files
...
The use of realpath means when following symlinks the actual path is
used when loading these files in the VariableManager, which may not
line up with the host or group name specified.
Fixes #14545
10 years ago
Toshio Kuratomi
9c9cce51ab
Update submodule refs
10 years ago
Brian Coca
03c33053aa
clarified become options do not imply others
...
fixes #14635
10 years ago
Etherdaemon
06977d5cb1
Fixup boto3_conn as commit 6ea772931f broke commit 27398131cf
10 years ago
James Cammarata
2db3f290ba
Fix logic error when copying files recursively to a directory
10 years ago
Brian Coca
34541b4e5e
preserve no_log for async also
10 years ago
James Cammarata
d74ea51287
Submodule update
10 years ago
James Cammarata
da02aba173
Don't inject PlayContext properties as variables if they're None
...
Fixes bug introduced in 078ebb0
10 years ago
James Cammarata
e02b98274b
issue callbacks per item and retry fails
...
- now workers passes queue to task_executor so it can send back events per item and on retry attempt
- updated result class to pass along events to strategy
- base strategy updated to forward new events to callback
- callbacks now remove 'items' on final result but process them directly when invoked per item
- new callback method to deal with retry attempt messages (also now obeys nolog)
- updated tests to match new signature of task_executor
fixes #14558
fixes #14072
10 years ago
Brian Coca
6eb4633b07
always return a checksum key, even if empty
10 years ago
Peter Sprygada
fc57b88356
Merge pull request #14618 from ogenstad/devel
...
Fixes authentication error bug when user has rsa keys
10 years ago
James Cammarata
6cf6130468
Fixing/cleaning up do/until logic in TaskExecutor
...
* Fixes bug where the task was not marked as failed if the number of
retries were exceeded (#14461 )
* Reorganizing logic to be a bit cleaner, and so retrie messages are
shown before sleeping (which makes way more sense)
Fixes #14461
Fixes #14580
10 years ago
Matt Martz
cacb74aeeb
Merge pull request #14340 from sivel/uri-no-httplib2
...
Add RedirectHandler class for controlling redirects in urllib2
10 years ago
Matt Martz
27a55d3f33
Merge pull request #14586 from sivel/python-facts
...
Add python info to facts
10 years ago
Matt Martz
3ac0143cf1
Merge pull request #13654 from sivel/paramiko-proxy-command
...
Add ProxyCommand support to the paramiko connection plugin
10 years ago
Matt Martz
38b663471d
Merge pull request #14311 from sivel/unsafe-yaml-constructor
...
Add new 'unsafe' YAML constructor
10 years ago
Matt Martz
d9a207f24f
Add has_sslcontext fact as well
10 years ago
Matt Martz
7158eb489f
Add python info to facts
10 years ago
ogenstad
3f95f163ff
Avoids authentication failed exception if user has private rsa keys under .ssh
10 years ago
James Cammarata
078ebb0dec
Don't re-inject become* variables as it causes problems when templating is involved
...
Prior to 75b6f61 , we strictly limited variables we re-injected. After that
patch however, we re-injected everything which causes problems under certain
circumstances. For now, we'll continue to filter out some properties of
PlayContext for re-injection.
Fixes #14352
10 years ago
Brian Coca
e35b1cf154
show task path on vv and above
10 years ago
Brian Coca
cea10794fd
removed unused color var
10 years ago
Matt Martz
f8211f83a0
Merge pull request #14591 from sivel/issue/14541
...
Allow lookups to return python data structures
10 years ago
Matt Martz
439a385215
Catch TypeError on join, and if caught just return a single item, or a list of many
10 years ago