Difference between revisions of "Vagrant"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with "This is a silent installer and uninstaller for Vagrant == Vagrant 1.7.2 == <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <packages> <package id='vagrant' name=...")
(No difference)

Revision as of 10:23, 19 May 2015

This is a silent installer and uninstaller for Vagrant

Vagrant 1.7.2

<?xml version="1.0" encoding="UTF-8"?>

<packages>
<package id='vagrant' name='vagrant' revision='%version%' reboot='false' priority='10'>

	<variable name="version" value="1.7.2" />

	<check type='uninstall' condition='versiongreaterorequal' path='Vagrant' value='%version%'/>
 
	<install cmd='msiexec /i "%SOFTWARE%\vagrant\vagrant_%version%.msi" VAGRANTAPPDIR=C:\HashiCorp\Vagrant /passive /norestart' timeout='300'>
		<exit code='0' />
		<exit code='3010' reboot='none' />
	</install>
 
 	<upgrade include="install" />
	
 
	<remove cmd='C:\HashiCorp\Vagrant\embedded\unins000.exe /VERYSILENT /NORESTART '>
		<exit code='0' />
		<exit code='1605' />
		<exit code='3010' reboot='none' />
	</remove>
	</package>
</packages>