I'm using Parallels tools auto installation as part of a vagrant & packer build to generate an image for the rest of the team to use.
The parallels tool installer conflicts with our custom provisioning script and one of them always fails, depending on who gets to run apt first.
How can I ensure that parallels installer has completed before ours starts? For example is there a specific file I can check for that is at the end of the installation? Ideally I could force the installer to run as a synchronous task and not async.
FWIW I have this in vagrant:
The parallels tool installer conflicts with our custom provisioning script and one of them always fails, depending on who gets to run apt first.
How can I ensure that parallels installer has completed before ours starts? For example is there a specific file I can check for that is at the end of the installation? Ideally I could force the installer to run as a synchronous task and not async.
FWIW I have this in vagrant:
Code:
config.vm.provider "parallels" do |prl|
prl.name = FQDN
prl.use_linked_clone = true
prl.update_guest_tools = true