Commit Graph

13291 Commits (920b71984e75f5f78a358fc2865d40b6c3269ba7)
 

Author SHA1 Message Date
Toshio Kuratomi 920b71984e lists => frozenset as we're only using them in membership checks 9 years ago
Brian Coca 161eb6d30d Merge pull request #10313 from alobbs/devel
Prevents trailing zeros to be truncated from strings in hosts ini inventory variables
9 years ago
Alvaro Lopez Ortega 2e929cf0ce Fixes bug #10281 - Trailing zeros were truncated from strings 9 years ago
Alvaro Lopez Ortega a14248ffe1 Fixes bug #10281 - Trailing zeros were truncated from strings 9 years ago
Brian Coca 84e18b00d6 Merge pull request #10312 from drybjed/docs-filters
Reorganization of Jinja2 filter documentation
9 years ago
Maciej Delmanowski c10f4c23dd Specify that 'ipaddr' is available in 1.9 9 years ago
Maciej Delmanowski 25ef581a90 Add basic examples of ipaddr filter use 9 years ago
Maciej Delmanowski 71dae62b2a Add IP address filter documentation 9 years ago
Maciej Delmanowski c866a26d81 Move Jinja2 filters documentation to separate file 9 years ago
Brian Coca 1cb47c807e changed fetch test to match new functionality 9 years ago
Brian Coca 6b64fe8bdd Merge pull request #9936 from sysadmin75/9415_hostname_as_dir
Fixes #9415 - fetch: should use hostname instead of ip for directory name
9 years ago
Brian Coca acbd096cf3 Merge pull request #10298 from bcoca/lookup_wantlist
Allow requesting a list to lookup plugins instead of , delimited string
9 years ago
Brian Coca 1d90ff8b34 Merge pull request #10304 from dago/ldom
Add LDom support
9 years ago
Dagobert Michelsen c1dba60961 Use try block for field splitting 9 years ago
Dagobert Michelsen 90e760ba84 Add LDom support 9 years ago
Brian Coca a66c559818 documented new wantlist feature 10 years ago
Brian Coca 57674fa047 Allow requesting a list to lookup plugins instead of , delimited string 10 years ago
Brian Coca ee08448b2e now module_formatter handles new expanded return values from the module_docs (still does not thing with new return value docs) 10 years ago
Brian Coca e842f8fab9 Merge pull request #10295 from bcoca/show_return_val_docs
ansible-doc now shows return value docs
10 years ago
Brian Coca c587bf1488 fixed absolute_import to be on top as it requries 10 years ago
Brian Coca c2023f6f59 Merge pull request #10285 from bcoca/math_filter_rearrange
rearranged math filters
10 years ago
Brian Coca 1e818f9c50 ansible-doc now shows return value docs 10 years ago
Brian Coca 8be8a7e2f5 Merge pull request #10277 from dago/solaris
Add Solaris zone support for inventory and connection

NOTE: the connection plugin will need some work for v2 (after 1.9 gets released)
10 years ago
Brian Coca 414737557e Merge pull request #10284 from mihirvj/devel-10221
Pulls machine id in ansible facts
10 years ago
Brian Coca e6ac2fa593 Merge pull request #10292 from dago/solaris-mounts
Add support for mounts in Solaris facts
10 years ago
Dagobert Michelsen b82a8576f1 Add support for mounts in Solaris facts 10 years ago
Brian Coca c92c4e7376 readded absolute_import 10 years ago
Brian Coca 8872bba21f rearranged math filters 10 years ago
Mihir Joshi 58a5f8dfaf Pulls machine id in ansible facts
- Fix #10221
10 years ago
Brian Coca 94aca71546 Merge pull request #9475 from jhawkesworth/simple_timer_plugin
Add simple plugin that times ansible-playbook runs.
10 years ago
Brian Coca a94d78181d Merge pull request #10280 from bcoca/jsonify_test_nospace
changed jsonify test to ignore whitespace
10 years ago
Brian Coca 2642738646 changed jsonify test to ignore whitespace 10 years ago
Toshio Kuratomi 77731440f3 Optimize the plugin loader.
We have been caching the paths to the plugins but before we would only
cache the specific plugin that we were looking for.  This meant that we
might search through all of the plugin directories before finding the
specific module we were interested in.  The next plugin we needed we
might again search through all the plugin directories before finding the
plugin we wanted.

This new code will cache all the potential plugins in each directory
searched.  For a play that only uses one plugin we'll only search
through directories until we encounter the directory that has the proper
plugin.  For a large playbook with many plugins used we'll search
through each directory at most once each.

From v1: 68e86de26f
         730c2ba403
10 years ago
Toshio Kuratomi 55e26db290 Support nested modules with ANSIBLE_LIBRARY env var
From v1: 4c2d06d2fe
10 years ago
Dagobert Michelsen 81f55ff8ff Adjust leftovers from chroot 10 years ago
Toshio Kuratomi cf82e57379 Merge pull request #10275 from jensdepuydt/optimize-plugin-loader-10165
Optimize plugin loader update
10 years ago
jensdepuydt 730c2ba403 minor change to not search in non-existing paths 10 years ago
jensdepuydt adc0e8be97 Merge branch 'optimize-plugin-loader-10165' of github.com:ansible/ansible into optimize-plugin-loader-10165 10 years ago
Toshio Kuratomi 9bb8e60ed1 Merge pull request #10269 from danrue/unarchive_creates_behavior
Make behavior consistent when using 'creates' option with modules
10 years ago
Toshio Kuratomi f1f176d86b Merge pull request #10266 from sivel/rax-cbs-test-size-fix
rax_cbs: Remove explicit msg match for invalid size in integration tests
10 years ago
Brian Coca fdb36b4ea6 Merge pull request #10270 from bcoca/make_clean_pyc
added cleaning pyc files
10 years ago
Brian Coca 24766bdfa0 added cleaning pyc files 10 years ago
Toshio Kuratomi 68e86de26f Optimize the plugin loader.
We have been caching the paths to the plugins but before we would only
cache the specific plugin that we were looking for.  This meant that we
might search through all of the plugin directories before finding the
specific module we were interested in.  The next plugin we needed we
might again search through all the plugin directories before finding the
plugin we wanted.

This new code will cache all the potential plugins in each directory
searched.  For a play that only uses one plugin we'll only search
through directories until we encounter the directory that has the proper
plugin.  For a large playbook with many plugins used we'll search
through each directory at most once each.

This should alleviate #10165
10 years ago
Brian Coca 2b037400ad Merge pull request #10264 from bcoca/jsonify_test_fix
fixed jsonify test
10 years ago
Dan Rue 67eb9f301d Do not mark "skipped" when changed is false
When using the "creates" option with the script module, set changed
to False if the file already exists. This behavior is consistent with
other modules which use "creates", such as command and shell.
10 years ago
Dan Rue 787388ac30 Do not mark "skipped" when changed is false
When using the "creates" option with the unarchive module, set changed
to False if the file already exists. This behavior is consistent with
other modules which use "creates", such as command and shell.
10 years ago
Matt Martz 1d0ceb37a4 Remove explicit msg match for invalid size 10 years ago
Brian Coca bc5d0a8cd4 fixed jsonify test 10 years ago
Brian Coca 50379d59ba Merge pull request #10263 from shamrin/fix-ansible-devel-links
fix links to ansible-devel in documentation pages
10 years ago
Alexey Shamrin b950a38e30 fix links to ansible-devel in documentation pages 10 years ago