bootstrap-vz/bootstrapvz/plugins/apt_proxy/manifest-schema.yml
John Kristensen 4120260a99 Add authentication support to the apt proxy plugin
Add username and password settings to the APT Proxy plugin so that
users who are behind an authenticating proxy can still use bootstrap-vz
without having to jump through hoops. If either the username or password
are not set, then no authentication is used.
2015-04-27 13:21:43 +10:00

19 lines
438 B
YAML

---
$schema: http://json-schema.org/draft-04/schema#
title: APT proxy plugin manifest
type: object
properties:
plugins:
type: object
properties:
apt_proxy:
type: object
properties:
address: {type: string}
password: {type: string}
port: {type: integer}
persistent: {type: boolean}
username: {type: string}
required:
- address
- port