mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Fix some indentation and links
This commit is contained in:
parent
d496c028cd
commit
5942c665bc
2 changed files with 24 additions and 19 deletions
36
README.rst
36
README.rst
|
@ -24,7 +24,8 @@ There, you can discover `what the dependencies <#dependencies>`__ for
|
||||||
a specific cloud provider are, `see a list of available plugins <bootstrapvz/plugins>`__
|
a specific cloud provider are, `see a list of available plugins <bootstrapvz/plugins>`__
|
||||||
and learn `how you create a manifest <manifests>`__.
|
and learn `how you create a manifest <manifests>`__.
|
||||||
|
|
||||||
Note to developers: `The documentaion <docs>`__ is generated in a rather peculiar and nifty way.
|
Note to developers: `The documentaion <docs>`__ is generated in
|
||||||
|
a rather peculiar and nifty way.
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
@ -65,7 +66,7 @@ quits the process.
|
||||||
VirtualBox Vagrant
|
VirtualBox Vagrant
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
::
|
.. code:: sh
|
||||||
|
|
||||||
user@host:~$ sudo -i # become root
|
user@host:~$ sudo -i # become root
|
||||||
root@host:~# git clone https://github.com/andsens/bootstrap-vz.git # Clone the repo
|
root@host:~# git clone https://github.com/andsens/bootstrap-vz.git # Clone the repo
|
||||||
|
@ -73,10 +74,10 @@ VirtualBox Vagrant
|
||||||
root@host:~# pip install termcolor jsonschema fysom docopt pyyaml # Install python dependencies
|
root@host:~# pip install termcolor jsonschema fysom docopt pyyaml # Install python dependencies
|
||||||
root@host:~# bootstrap-vz/bootstrap-vz bootstrap-vz/manifests/virtualbox-vagrant.manifest.yml
|
root@host:~# bootstrap-vz/bootstrap-vz bootstrap-vz/manifests/virtualbox-vagrant.manifest.yml
|
||||||
|
|
||||||
If you want to use the `minimize\_size <bootstrapvz/plugins/minimize_size>`__
|
If you want to use the `minimize\_size <bootstrapvz/plugins/minimize_size>`__ plugin,
|
||||||
plugin, you will have to install the ``zerofree`` package and `VMWare
|
you will have to install the ``zerofree`` package and `VMWare Workstation`__ as well.
|
||||||
Workstation <https://my.vmware.com/web/vmware/info/slug/desktop_end_user_computing/vmware_workstation/10_0>`__
|
|
||||||
as well.
|
__ https://my.vmware.com/web/vmware/info/slug/desktop_end_user_computing/vmware_workstation/10_0
|
||||||
|
|
||||||
Amazon EC2 EBS backed AMI
|
Amazon EC2 EBS backed AMI
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -109,11 +110,12 @@ occurred you can simply correct the problem that caused it and rerun
|
||||||
everything, there will be no leftovers from the previous run (as always
|
everything, there will be no leftovers from the previous run (as always
|
||||||
there are of course rare/unlikely exceptions to that rule). The error
|
there are of course rare/unlikely exceptions to that rule). The error
|
||||||
messages should always give you a strong hint at what is wrong, if that
|
messages should always give you a strong hint at what is wrong, if that
|
||||||
is not the case please consider `opening an
|
is not the case please consider `opening an issue`__ and attach
|
||||||
issue <https://github.com/andsens/bootstrap-vz/issues>`__ and attach
|
|
||||||
both the error message and your manifest (preferably as a gist or
|
both the error message and your manifest (preferably as a gist or
|
||||||
similar).
|
similar).
|
||||||
|
|
||||||
|
__ https://github.com/andsens/bootstrap-vz/issues
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
@ -127,9 +129,9 @@ At a bare minimum the following python libraries are needed:
|
||||||
* `docopt <https://pypi.python.org/pypi/docopt>`__
|
* `docopt <https://pypi.python.org/pypi/docopt>`__
|
||||||
* `pyyaml <https://pypi.python.org/pypi/pyyaml>`__
|
* `pyyaml <https://pypi.python.org/pypi/pyyaml>`__
|
||||||
|
|
||||||
To bootstrap Debian itself
|
To bootstrap Debian itself `debootstrap`__ is needed as well.
|
||||||
`debootstrap <https://packages.debian.org/wheezy/debootstrap>`__
|
|
||||||
is needed as well.
|
__ https://packages.debian.org/wheezy/debootstrap
|
||||||
|
|
||||||
Any other requirements are dependent upon the manifest configuration
|
Any other requirements are dependent upon the manifest configuration
|
||||||
and are detailed in the corresponding sections of the documentation.
|
and are detailed in the corresponding sections of the documentation.
|
||||||
|
@ -140,14 +142,12 @@ Developers
|
||||||
----------
|
----------
|
||||||
|
|
||||||
The API documentation, development guidelines and an explanation of
|
The API documentation, development guidelines and an explanation of
|
||||||
bootstrap-vz internals can be found at
|
bootstrap-vz internals can be found at `bootstrap-vz.readthedocs.org`__.
|
||||||
`bootstrap-vz.readthedocs.org <http://bootstrap-vz.readthedocs.org/en/master/developers>`__.
|
|
||||||
|
__ http://bootstrap-vz.readthedocs.org/en/master/developers
|
||||||
|
|
||||||
Contributing
|
Contributing
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Contribution guidelines are described in the documentation under
|
Contribution guidelines are described in the documentation under `Contributing <CONTRIBUTING.rst>`__.
|
||||||
`Contributing <CONTRIBUTING.rst>`__.
|
There's also a topic regarding `the coding style <CONTRIBUTING.rst#coding-style>`__.
|
||||||
There's also
|
|
||||||
`a topic <CONTRIBUTING.rst#coding-style>`__
|
|
||||||
regarding the coding style.
|
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
The testing framework consists of two parts:
|
The testing framework consists of two parts:
|
||||||
The unit tests and the integration tests
|
The unit tests and the integration tests.
|
||||||
|
|
||||||
|
The `unit tests <unit>`__ are responsible for testing individual
|
||||||
|
parts of bootstrap-vz,
|
||||||
|
while the `integration tests <integration>`__ test entire manifests by
|
||||||
|
bootstrapping and booting them.
|
||||||
|
|
Loading…
Add table
Reference in a new issue