bootstrap-vz/bootstrapvz/plugins/apt_proxy
2018-02-25 09:34:12 +00:00
..
__init__.py fix pylint W0403(relative-import) 2018-02-25 04:12:24 +00:00
manifest-schema.yml Litter the manifest schemas with additionalProperties:false 2015-05-02 13:04:30 +02:00
README.rst Docs: fix apt_proxy plugin's README 2015-04-28 01:32:51 -03:00
tasks.py pylint E1101(no-member) 2018-02-25 09:34:12 +00:00

APT Proxy
---------

This plugin creates a proxy configuration file for APT, so you could
enjoy the benefits of using cached packages instead of downloading them
from the mirror every time. You could just install ``apt-cacher-ng`` on
the host machine and then add ``"address": "127.0.0.1"`` and
``"port": 3142`` to the manifest file.

Settings
~~~~~~~~

-  ``address``: The IP or host of the proxy server.
   ``required``
-  ``port``: The port (integer) of the proxy server.
   ``required``
-  ``username``: The username for authentication against the proxy server.
   This is ignored if ``password`` is not also set.
   ``optional``
-  ``password``: The password for authentication against the proxy server.
   This is ignored if ``username`` is not also set.
   ``optional``
-  ``persistent``: Whether the proxy configuration file should remain on
   the machine or not.
   Valid values: ``true``, ``false``
   Default: ``false``.
   ``optional``