[Puppet Users] could not retrieve information from environment

2012-05-23 Thread Matt F
Greetings. I am trying to set up a test puppet server in my environment to evaluate windows clients. On the server side, I am using puppet 2.7.14 (from the repos). I'm using the 2.7.14 windows 64 bit on the client (windows 2008 R2). I have another puppetmaster already using "puppet" hostname in DNS

[Puppet Users] Re: could not retrieve information from environment

2012-05-23 Thread Matt F
Sure: puppet master --configprint certname myserver01.example.com C:\Windows\system32>puppet agent --trace C:/Program Files (x86)/Puppet Labs/Puppet/sys/ruby/lib/ruby/1.8/net/ http.rb:560:in `initialize' C:/Program Files (x86)/Puppet Labs/Puppet/sys/ruby/lib/ruby/1.8/net/ http.rb:560:in `open'

[Puppet Users] Re: could not retrieve information from environment

2012-05-23 Thread Matt F
Thanks Jeff. Sorry, my security people block github... C:\Windows\system32>puppet agent --configprint server myserver01.example.com C:\Windows\system32>puppet agent --test --trace --debug debug: Failed to load library 'syslog' for feature 'syslog' debug: Failed to load library 'selinux' for featu

Re: [Puppet Users] Re: could not retrieve information from environment

2012-05-23 Thread Matt F
Yeah, looks like the puppetmasterd stopped at some point. There is no firewall. Here's the new client outout. Per the errors below, I just verified that the times are in sync between the client and the server. C:\Windows\system32>puppet agent --test --trace --debug debug: Failed to load library

Re: [Puppet Users] Re: could not retrieve information from environment

2012-05-23 Thread Matt F
I deleted & regenerated the cert. Now I'm getting the errors below. I have never switched puppetmaster servers, but I do have another puppetmaster server that has the dns alias 'puppet'. However, the client should not be accessing that server. Running Puppet agent on demand ... info: Retrieving

Re: [Puppet Users] Re: could not retrieve information from environment

2012-05-24 Thread Matt F
Thanks Josh - here's the output: C:\Windows\system32>puppet agent --test --debug debug: Failed to load library 'syslog' for feature 'syslog' debug: Failed to load library 'selinux' for feature 'selinux' debug: Puppet::Type::File::ProviderPosix: feature posix is missing debug: Failed to load libra

Re: [Puppet Users] Re: could not retrieve information from environment

2012-05-24 Thread Matt F
I ended up installing yet another puppetmaster, and I think that resolved my cert issues. However, my client still cannot get a test file from the puppetmaster. There is NO firewall or selinux running on the server (both disabled). fileserver.conf has: [files] path /var/lib/puppet/files

Re: [Puppet Users] Re: could not retrieve information from environment

2012-05-24 Thread Matt F
Do I _have_ to use a module? I'm starting out with the very basics. All I want to do is copy a single file. would this work with a class instead of a module? I'm starting to read your "Pro Puppet" book... and on pg 20 modules are described as "an ADVANCED, portable..." keyword ADVANCED. -- You

[Puppet Users] puppet kick not working against windows service

2012-08-17 Thread Matt F
I am running puppet 2.7.14 - CentOS 6 server, CentOS and windows 2008 R2 clients. I'm having problems with the "puppet kick" command - it works on linux clients, and on my windows box when "puppet agent --no-daemonize --verbose" is run from a command prompt. However, when I run it as a windows

[Puppet Users] Re: puppet kick not working against windows service

2012-08-17 Thread Matt F
Thanks Nan. > > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/-vaxgyd3qd8J. To post to this group, send email to puppet-users@googlegroups.com. To unsubs

Re: [Puppet Users] puppet kick not working against windows service

2012-08-17 Thread Matt F
Thanks Nan! Do you know if windows support of "-listen" is planned for any future release? (it's not clear to me reading the bug that you referenced). -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit htt

Re: [Puppet Users] puppet kick not working against windows service

2012-08-22 Thread Matt F
I've installed mcollective, and I can get data from the client (IE: "mco inventory mywindowsclient"). I've configured the puppetd agent plugin, and that shows up in the "mco inventory" output as well. However, I still cannot trigger puppet to update on the client. Any idea of what the cause mig

Re: [Puppet Users] puppet kick not working against windows service

2012-08-22 Thread Matt F
BTW: I'm seeing the following on the client, in the mcollective log - not sure if this is an issue: D, [2012-08-22T12:15:14.761477 #3224] DEBUG -- : runnerstats.rb Incrementing total stat D, [2012-08-22T12:15:14.761477 #3224] DEBUG -- : pluginmanager.rb Returning cached plugin security_plugin w

Re: [Puppet Users] puppet kick not working against windows service

2012-08-22 Thread Matt F
Here's the mcollective.log from the client: D, [2012-08-22T13:54:28.907044 #3224] DEBUG -- : runnerstats.rb Incrementing total stat D, [2012-08-22T13:54:28.907044 #3224] DEBUG -- : pluginmanager.rb Returning cached plugin security_plugin with class MCollective::Security::Psk D, [2012-08-22T13:54:

[Puppet Users] Need help with python msi install on windows

2013-05-03 Thread Matt F
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

[Puppet Users] Re: Need help with python msi install on windows

2013-05-07 Thread Matt F
4." I've tried running "puppet apply --debug --trace" from a "command prompt with puppet", but this just hangs. 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 > usi

[Puppet Users] module dependancy

2013-05-14 Thread Matt F
I have two modules, and I'm having some dependacy problems: 1 - Install python "pip": class pythonpip::install { file {"/root/.pip": ensure => directory, owner => root, group => root, mode => 755 } file {"/root/.pip/pip.conf": ensure => pr