Commit Graph

12506 Commits (afd8cca3452c0700e154a4f430aa73d97efe162a)
 

Author SHA1 Message Date
James Cammarata 547c0d8140 Merge pull request #9216 from nmadhok/patch-3
Update playbooks_roles.rst
10 years ago
James Cammarata 29e95d86fb Merge pull request #9425 from bobobox/patch-1
Typo fix in playbooks_intro.rst
10 years ago
James Cammarata 77f91eb031 Merge pull request #9422 from tonk/docfix
Ignore compiled Python for documentation.
10 years ago
James Cammarata 1ece7e99e5 Merge pull request #9410 from dannyroberts/patch-1
Update developing_modules.rst
10 years ago
James Cammarata b896633866 Merge pull request #9402 from mscherer/fix_man_ansible_pull
Fix the synopsis in ansible-pull man page.
10 years ago
bobobox 66f700eb0d Update playbooks_intro.rst
Small punctuation/grammar fix.
10 years ago
Ton Kersten 39bbe36fc7 Ignore compiled Python for documentation.
When running `ansible-doc --list` a lot of errors are
generated when `ansible-doc` tries to find documentation
strings in `.pyc` files.
10 years ago
James Cammarata 44afa7facc Updating Role class for new DataLoader stuff 10 years ago
James Cammarata 7cb489eca3 Adding a data parsing class for v2 10 years ago
Daniel Roberts 2ef2f12472 Update developing_modules.rst 10 years ago
Juri Glass c16c527923 Update playbooks_variables.rst
There is some kind of duplicated content with http://docs.ansible.com/faq.html#how-do-i-loop-over-a-list-of-hosts-in-a-group-inside-of-a-template and this gotcha isn't listed here.
10 years ago
Toshio Kuratomi c86851be2c Quote ControlPath ssh parameter
Fixes #9316
10 years ago
Toshio Kuratomi 34129a223d update core submodules for systemd service fix 10 years ago
Toshio Kuratomi 56c268ade4 New test that newlines in systemd service scripts don't cause problems 10 years ago
James Cammarata 76a43d4b38 Updating submodule pointer for core modules 10 years ago
Michael Scherer 9c10a11aea Fix the synopsis in ansible-pull man page. 10 years ago
Michael DeHaan 3c88f99d13 Add AnsibleFest London link. 10 years ago
James Cammarata 9ee3cd14ee Fix typo in vault edit helper code
Fixes #9399
10 years ago
James Cammarata b4f9631e4c Revert "remove complex_args_hack as it was only needed for Baby JSON"
This reverts commit a6029264b8.

Fixes #9400
10 years ago
James Cammarata be972225a5 Removing unnecessary import from v2 parsing init 10 years ago
James Cammarata 4c47c2273a Use convert_bare instead of string formatting for raw vars in debug action plugin 10 years ago
James Cammarata 707474a43a Merge pull request #9394 from ronalexander/patch-1
Update intro_installation.rst
10 years ago
James Cammarata 987f7750ec Merge pull request #9388 from mwarkentin/patch-2
Add host to polling message
10 years ago
James Cammarata 2ff17ebd93 Adding in VaultEditor tests from old unittests 10 years ago
Toshio Kuratomi c1b290a311 Fix logic that prevents multiple action, local_action, and modules to be specified. 10 years ago
Toshio Kuratomi 6c94d85690 Tell nose to include branches in its coverage reporting 10 years ago
Toshio Kuratomi b3452de8a7 Hook up the general parsing unittests and get them passing 10 years ago
James Cammarata 0a8c91a812 Fixing up tests, removing some of the yaml error stuff from parsing
* moved old unittests for vault over to the new codebase
* reverted YAML error helpers and reverted the load() function
  in parsing/__init__.py, pending a rewrite of a new YAML loader
  class of some kind to encapsulate all of that
* fixed an error in in the module args parser regarding the shell/
  command argument parsing, where some additional arguments were
  being lost
10 years ago
James Cammarata 0ed97e4d11 Updating v2 Role class code 10 years ago
Toshio Kuratomi 4c86bd3ca6 Merge the vault tempfile fix to the v2 tree 10 years ago
Toshio Kuratomi 3d135f98d1 Small python3 compat in vault to keep code in sync with v2 10 years ago
ronalexander e265fb85b4 Update intro_installation.rst
Corrected casing of Jinja2 in pip dependencies.
10 years ago
Toshio Kuratomi 43b3eecf52 Debian/Ubuntu doesn't have group nobody so remove the group portion of the new template tests as owner and mode will exercise the problematic code path 10 years ago
Toshio Kuratomi e78c5f925b Python3 fixes 10 years ago
Toshio Kuratomi a954220957 Migrate the v2/tests to use the ansible.compat module 10 years ago
Toshio Kuratomi 3f27e5e080 Compat tree for code dealing with compatibility between python versions 10 years ago
Toshio Kuratomi da9d87b1d4 Make vault file creation use a tempfile 10 years ago
Toshio Kuratomi 694e0420ab Update the modules to pull in the files module needed for the updated
integration tests
10 years ago
Toshio Kuratomi feb9ed1de8 Fix template module incorrectly handling mode when dest is a directory
Fixes #9350
10 years ago
Toshio Kuratomi 1e12d3028c Merge pull request #9384 from insaneirish/devel
Change "usuable" to "usable".
10 years ago
Toshio Kuratomi d23df78666 Merge pull request #9389 from mwarkentin/patch-3
Fix typo
10 years ago
Michael Warkentin d69aa19206 Fix typo
`Propspective` -> `Prospective`
10 years ago
Michael Warkentin 18a9282e0d Add host to polling message
The message for when an async task has finished has the hostname in it. This adds it to the polling message as well:

```
<job 390794962174.18311> finished on 107.6.24.140
<job 390794962174.31779> finished on 69.90.50.171
<job 390794962174.12328> polling on 69.90.50.172, 6840s remaining
```
10 years ago
James Cammarata e8f675003f Merge pull request #9336 from dpkirchner/devel
Added _meta hostvars key to gce.py plugin
10 years ago
James Cammarata b61a78532c Catch template syntax errors specifically when templating strings
Fixes #9333
10 years ago
James Cammarata b0069a338e Overhauls to v2 code
* using inspect module instead of iteritems(self.__class__.__dict__, due
  to the fact that the later does not include attributes from parent
  classes
* added tags/when attributes to Base() class for use by all subclasses
* removed value/callable code from Attribute, as they are not used
* started moving some limited code from utils to new places in v2 tree
  (vault, yaml-parsing related defs)
* re-added ability of Block.load() to create implicit blocks from tasks
* started overhaul of Role class and role-related code
10 years ago
James Cammarata 28fd4df787 Merge pull request #9382 from gquintard/WIP/newdockerdetection
Detect docker as virtualization_type
10 years ago
James Cammarata efb40969b3 Merge pull request #9381 from debfx/facts_virt_kvm
Detect kvm guests through sys_vendor.
10 years ago
Toshio Kuratomi 5fe5e2d3f4 Docstring for v2 inventory.subset 10 years ago
insaneirish 3d257bc695 Change "usuable" to "usable". 10 years ago