Update path for manual vagrant-vmware-utility installation

This updates the installation path described to be the default
location so that the vagrant-vmware-plugin will automatically
discover the certificates directory without requiring any
customization within the Vagrantfile.
This commit is contained in:
Chris Roberts 2019-02-12 08:11:13 -08:00
parent c6b42a04cd
commit 20490dbe5b
1 changed files with 4 additions and 4 deletions

View File

@ -29,15 +29,15 @@ Next create a directory for the executable and unpack the executable as
root. root.
```shell ```shell
sudo mkdir /opt/vagrant-vmware-utility/bin sudo mkdir /opt/vagrant-vmware-desktop/bin
sudo unzip -d /opt/vagrant-vmware-utility/bin vagrant-vmware-utility_1.0.0_x86_64.zip sudo unzip -d /opt/vagrant-vmware-desktop/bin vagrant-vmware-utility_1.0.0_x86_64.zip
``` ```
After the executable has been installed, the utility setup tasks must be run. First, After the executable has been installed, the utility setup tasks must be run. First,
generate the required certificates: generate the required certificates:
```shell ```shell
sudo /opt/vagrant-vmware-utility/bin/vagrant-vmware-utility certificate generate sudo /opt/vagrant-vmware-desktop/bin/vagrant-vmware-utility certificate generate
``` ```
The path provided from this command can be used to set the [`utility_certificate_path`] The path provided from this command can be used to set the [`utility_certificate_path`]
@ -47,7 +47,7 @@ configuration if installing to a non-standard path.
Finally, install the service. This will also enable the service. Finally, install the service. This will also enable the service.
```shell ```shell
sudo /usr/local/vagrant-vmware-utility/vagrant-vmware-utility service install sudo /usr/local/vagrant-vmware-desktop/vagrant-vmware-utility service install
``` ```
# Usage # Usage