From f48f2ff072fbd89bddcadfe40beb767343d5d776 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 1 Dec 2013 22:51:25 -0800 Subject: [PATCH] website/docs: document checksumming from Vagrantfile --- .../v2/vagrantfile/machine_settings.html.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/website/docs/source/v2/vagrantfile/machine_settings.html.md b/website/docs/source/v2/vagrantfile/machine_settings.html.md index 45e253f3c..2f101252c 100644 --- a/website/docs/source/v2/vagrantfile/machine_settings.html.md +++ b/website/docs/source/v2/vagrantfile/machine_settings.html.md @@ -23,6 +23,23 @@ the installed boxes on the system.
+`config.vm.box_download_checksum` - The checksum of the box specified by +`config.vm.box_url`. If not specified, no checksum comparison will be done. +If specified, Vagrant will compare the checksum of the downloaded box to +this value and error if they do not match. Checksum checking is only done +when Vagrant must download the box. + +If this is specified, then `config.vm.box_download_checksum_type` must +also be specified. + +
+ +`config.vm.box_download_checksum_type` - The type of checksum specified +by `config.vm.box_download_checksum` (if any). Supported values are +currently "md5", "sha1", and "sha256". + +
+ `config.vm.box_download_client_cert` - Path to a client certificate to use when downloading the box, if it is necessary. By default, no client certificate is used to download the box.