Below is the code I am using in ruby mine.
package { 'Microsoft ASP NET MVC':
ensure => 'installed',
provider => 'msi'
source => "$profile::base::installersPath\\AspNetMVC1.msi",
install_options => ['/S',{'INSTALLDIR'=> 'C:\AspNetMVC1.0'}],
}
And below is the error I am getting :
Error: Could not update: Failed to install: Fatal error during installation.
Error: /Stage[main]/Profile::ABCD/Package[Microsoft ASP.NET MVC]/ensure: cha
nge from absent to 1.0 failed: Could not update: Failed to install: Fatal error
during installation.
. If my code is wrong can anyone rectify it and put the correct code with some explanation.
↧