Hi Matt,

On Tue, May 7, 2013 at 10:26 AM, Matt F <[email protected]> wrote:

> Bump. Any help on this would be GREATLY appreciated! I also notice in the
> windows event log that I get the error "Failed to install:  Fail on INT
> 24." and "/Stage[main]/Python::Install/Package[python]/ensure: change from
> absent to present failed: Failed to install:  Fail on INT 24."
>

You may be running into http://projects.puppetlabs.com/issues/20534. May
sure to use backslashes, but don't escape them, e.g.
'\\server\share\python.msi'


> I've tried running "puppet apply --debug --trace" from a "command prompt
> with puppet", but this just hangs.


Are you running as an administrator? Do you have any custom facts (if so,
check that they aren't executing a command that is hanging waiting for
input, e.g. date.exe). I recommend installing process explorer and see what
puppet's ruby.exe process is executing.

Also verify that the MSI can be installed silently from the command line
directly (msiexec.exe /qn /norestart /i python.msi. It is up to the MSI
author to ensure that it abides by the specified UI level.


>
>
>
> On Friday, May 3, 2013 1:53:12 PM UTC-4, Matt F wrote:
>>
>> I'm trying to install python (via msi) onto a windows 2008R2 box. I'm
>> using puppet 3.1 on the client, 3.0.2 on the puppet server. Here is my
>> install.pp:
>>
>> class python::install {
>>     package { 'python':
>>         ensure          => installed,
>>         provider        => 'msi',
>>         source          => '\\\\example.com\\software\\**
>> python\\python-2.7.3.amd64.**msi',
>>         install_options => [ { 'INSTALLDIR' => 'C:\python27' }, {
>> 'ALLUSERS' => '1' } ],
>>     }
>> }
>>
>> I can see the "msiexec" process running on the client, but it seems to
>> run forever without installing anything.
>>
>> Any help would be greatly appreciated!
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>



-- 
Josh Cooper
Developer, Puppet Labs

*Join us at PuppetConf 2013, August 22-23 in San Francisco - *
http://bit.ly/pupconf13*
**Register now and take advantage of the Early Bird discount - save 25%!*

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to