Repeat index/README pattern for plugins & providers

This commit is contained in:
Anders Ingemann 2015-04-16 23:39:14 +02:00
parent 7d0b9f5bc5
commit e80ad46972
4 changed files with 22 additions and 11 deletions

View file

@ -0,0 +1,8 @@
Plugins are a key feature of bootstrap-vz. Despite their small size
(most plugins do not exceed 100 source lines of code) they can modify
the behavior of bootstrapped systems to a great extent.
Below you will find documentation for all plugins available for
bootstrap-vz. If you cannot find what you are looking for, consider
`developing it yourself <http://bootstrap-vz.readthedocs.org>`__ and
contribute to this list!

View file

@ -0,0 +1,8 @@
Providers in bootstrap-vz represent various cloud providers and virtual machines.
bootstrap-vz is an extensible platform with loose coupling and a significant
amount of tooling, which allows for painless implementation of new providers.
The virtualbox provider for example is implemented in only 89 lines of python,
since most of the building blocks are a part of the common task library.
Only the kernel and guest additions installation are specific to that provider.

View file

@ -1,19 +1,11 @@
Plugins
=======
Plugins are a key feature of bootstrap-vz. Despite their small size
(most plugins do not exceed 100 source lines of code) they can modify
the behavior of bootstrapped systems to a great extent.
Below you will find documentation for all plugins available for
bootstrap-vz. If you cannot find what you are looking for, consider
`developing it yourself <http://bootstrap-vz.readthedocs.org>`__ and
contribute to this list!
.. toctree::
:maxdepth: 1
:hidden:
:glob:
*
.. include:: ../../bootstrapvz/plugins/README.rst

View file

@ -3,6 +3,9 @@ Providers
.. toctree::
:maxdepth: 1
:hidden:
:glob:
*
.. include:: ../../bootstrapvz/providers/README.rst