Ansible action plugin to template arbitrary json ini yaml data
Go to file
Luong Anh Tuan 831103935b Remove xrange for run both Python 2 and Python 3
In python 3, range() does what xrange() used to do and xrange() does not
exist. If you want to write code that will run on both Python 2 and
Python 3, you can't use xrange().

range() can actually be faster in some cases - eg. if iterating over the
same sequence multiple times. xrange() has to reconstruct the integer
object every time, but range() will have real integer objects.
(It will always perform worse in terms of memory however)

xrange() isn't usable in all cases where a real list is needed.
For instance, it doesn't support slices, or any list methods.

Change-Id: I033289359882c08185d59d13fa0b994c4566185a
2016-10-12 12:39:30 +07:00
action Add option to toggle list extensions 2016-09-09 16:15:00 -05:00
callback Human readable logs should be removed 2016-09-21 11:49:12 -05:00
connection Implement an opportunistic strategy and connection plugin 2016-08-25 17:45:10 +00:00
doc [DOCS] Updating plugin role docs 2016-08-12 08:04:17 -05:00
examples [DOCS] Updating plugin role docs 2016-08-12 08:04:17 -05:00
filter Created deprecation filter 2016-02-29 15:20:34 -06:00
library Remove xrange for run both Python 2 and Python 3 2016-10-12 12:39:30 +07:00
lookup Fix regression for proprietary packages 2016-09-14 19:09:41 +00:00
meta first commit 2016-01-25 18:07:53 -06:00
releasenotes Enable release notes translation 2016-10-06 20:39:19 +02:00
strategy Fix assumption that the main OSA inventory will be used 2016-08-25 23:20:04 -05:00
tests Use centralised test scripts 2016-09-28 12:04:13 +01:00
.gitignore Update testing bits for consistency 2016-09-23 15:46:54 +00:00
.gitreview Updated repo for new org 2016-01-27 10:31:29 -06:00
bindep.txt Added SNI support for ansible_plugins via OS packages 2016-08-19 14:50:59 +00:00
CONTRIBUTING.rst [DOCS] Cleanup the role docs for consistency and clarity 2016-03-07 17:38:19 -05:00
LICENSE Update LICENSE file 2016-02-01 16:47:07 +00:00
manual-test.rc Use centralised test scripts 2016-09-28 12:04:13 +01:00
README.rst [DOCS] Updating plugin role docs 2016-08-12 08:04:17 -05:00
run_tests.sh Update testing bits for consistency 2016-09-23 15:46:54 +00:00
setup.cfg Update homepage with developer documentation page 2016-09-20 12:04:01 +05:30
setup.py Updated from global requirements 2016-07-15 03:58:17 +00:00
test-requirements.txt Updated from global requirements 2016-09-29 22:37:13 +00:00
tox.ini Use centralised Ansible test scripts 2016-10-05 11:19:58 +00:00
Vagrantfile Adding Vagrantfile for local testing 2016-08-12 15:13:40 -05:00

OpenStack-Ansible plugins

These are the plugins the OpenStack-Ansible deployment project relies on. The plugins can be added to any Ansible project by simply cloning this repository and setting up the ansible.cfg file to point at them as additional plugins for your project.