diff options
Diffstat (limited to 'docs/reference/vppvagrant')
-rw-r--r-- | docs/reference/vppvagrant/Vagrantfile | 4 | ||||
-rw-r--r-- | docs/reference/vppvagrant/boxSetup.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/reference/vppvagrant/Vagrantfile b/docs/reference/vppvagrant/Vagrantfile index 32a13adedd8..457e37c8274 100644 --- a/docs/reference/vppvagrant/Vagrantfile +++ b/docs/reference/vppvagrant/Vagrantfile @@ -60,7 +60,7 @@ Vagrant.configure(2) do |config| config.vm.network "private_network", type: "dhcp" end - # use http proxy if avaiable + # use http proxy if available if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf") config.proxy.http = ENV['http_proxy'] config.proxy.https = ENV['https_proxy'] @@ -112,4 +112,4 @@ Vagrant.configure(2) do |config| vws.vmx["memsize"] = "#{vmram}" vws.vmx["numvcpus"] = "#{vmcpu}" end -end
\ No newline at end of file +end diff --git a/docs/reference/vppvagrant/boxSetup.rst b/docs/reference/vppvagrant/boxSetup.rst index 374ba349458..a8aa1f3c132 100644 --- a/docs/reference/vppvagrant/boxSetup.rst +++ b/docs/reference/vppvagrant/boxSetup.rst @@ -62,7 +62,7 @@ Looking further in the :ref:`vppVagrantfile`, you can see more Ruby variables be config.vm.network "private_network", type: "dhcp" end - # use http proxy if avaiable + # use http proxy if available if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf") config.proxy.http = ENV['http_proxy'] config.proxy.https = ENV['https_proxy'] @@ -122,4 +122,4 @@ To confirm it is up, show the status and information of Vagrant boxes with: $ vagrant destroy <id> - Note that "destroying" a VM does not erase the box, but rather destroys all resources allocated for that VM. For other Vagrant commands, such as destroying a box, refer to the `Vagrant CLI Page <https://www.vagrantup.com/docs/cli/>`_.
\ No newline at end of file + Note that "destroying" a VM does not erase the box, but rather destroys all resources allocated for that VM. For other Vagrant commands, such as destroying a box, refer to the `Vagrant CLI Page <https://www.vagrantup.com/docs/cli/>`_. |