bootstrap-vz/bootstrapvz/plugins
Veli-Matti Lintu 68d7ddb307 Commit 701678c9 changes print statements to print functions with end=' '.
As the printed strings contain newlines, this causes a space to be written
as the first character of the following line causing them to be indented.

An example config that is broken. Here disabling modules indents all the
other lines of cloud.cfg except the first one causing the username name
setting to fail as it expects indenting to be certain number of spaces.

plugins:
  cloud_init:
    metadata_sources: Ec2
    username: admin
    disable_modules:
      - locale
      - mounts

This commit removes the spaces by specifying end=''.
2018-06-13 13:20:05 +03:00
..
admin_user pylint E1608(old-octal-literal) 2018-04-09 22:27:43 -07:00
ansible fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
apt_proxy pylint E1101(no-member) 2018-02-25 09:34:12 +00:00
chef fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
cloud_init Commit 701678c9 changes print statements to print functions with end=' '. 2018-06-13 13:20:05 +03:00
commands fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
debconf fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
docker_daemon pylint E1608(old-octal-literal) 2018-04-09 22:27:43 -07:00
ec2_launch pylint W0703(broad-except) 2018-02-25 09:43:47 +00:00
ec2_publish fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
expand_root pylint E1608(old-octal-literal) 2018-04-09 22:27:43 -07:00
file_copy fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
google_cloud_repo fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
minimize_size pylint E1608(old-octal-literal) 2018-04-09 22:27:43 -07:00
ntp Commit 701678c9 changes print statements to print functions with end=' '. 2018-06-13 13:20:05 +03:00
opennebula fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
pip_install fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
prebootstrapped pylint W0621(redefined-outer-name) 2018-02-25 10:27:53 +00:00
puppet pylint W0622(redefined-builtin) 2018-02-25 08:37:24 +00:00
root_password fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
salt fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
tmpfs_workspace fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
unattended_upgrades fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
vagrant Merge pull request #471 from CMeza99/pylint+imports 2018-06-07 22:09:33 +02:00
__init__.py Move code into proper package folder 2014-04-02 21:26:13 +02:00
README.rst Repeat index/README pattern for plugins & providers 2015-04-16 23:52:07 +02:00

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!