Re: [Puppet Users] puppet apply or puppet agent -t fails on razor installation. Need help on razor too.

2013-12-10 Thread Arvind P R
All,

Thanks for your responses. I managed to get beyond this point. It was an 
issue with some dependencies.

Thanks

On Tuesday, December 10, 2013 9:48:22 PM UTC+5:30, Jeff Bachtel wrote:
>
> What is the output of "puppet agent -t -d" ? The -d debug flag should give 
> you much more detailed information about what child process, exactly, is 
> blocking.
>
> Jeff
>
>
> On Sat, Dec 7, 2013 at 2:03 PM, Arvind P R 
> > wrote:
>
>> My puppet master server is working fine and i now installed razor module 
>> on the same server.
>>
>> i downloaded the tar.gz from 
>> https://forge.puppetlabs.com/puppetlabs/razor and did the installation 
>> using 
>>
>> puppet module install  --ignore-dependencies. 
>> i took care of all the dependencies too.
>>
>> *My puppet server is behind a corporate authenticated proxy which 
>> prevents me from using "puppet module install". puppet bug!!*
>>
>> post razor installation, I included the following lines in 
>>
>> /etc/puppetlabs/puppet/manifests/site.pp
>>
>> node puppet_master {
>>   include razor
>> }
>>
>> now if i try to run the following commands:
>>
>> puppet apply /etc/puppetlabs/puppet/manifests/site.pp
>> OR
>> puppet agent -t
>>
>> on the same server, the commands hang
>>
>> puppet apply hangs without any message while the following is shown on 
>> puppet agent -t
>>
>> [root@centos-razor ~]# puppet agent -t
>> Info: Retrieving plugin
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/stdlib/lib/facter/root_home.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/stdlib/lib/facter/pe_version.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/postgresql/lib/facter/postgres_default_version.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/concat/lib/facter/concat_basedir.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/pe_common/lib/facter/windows.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/pe_puppetdb/lib/facter/puppetdb_server_status.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/auth_conf/lib/facter/custom_auth_conf.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/firewall/lib/facter/ip6tables_version.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
>> Info: Loading facts in 
>> /opt/puppet/share/puppet/modules/firewall/lib/facter/iptables_version.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/puppetdb_server_status.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/puppet_vardir.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/facter_dot_d.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/windows.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/root_home.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/postgres_default_version.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/pe_version.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/ip6tables_version.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/iptables_persistent_version.rb
>> Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/concat_basedir.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/iptables_version.rb
>> Info: Loading facts in 
>> /var/opt/lib/pe-puppet/lib/facter/custom_auth_conf.rb
>> Info: Caching catalog for centos-razor.a100.lab
>> Info: Applying configuration version '1386442284'
>>
>> the command does not complete!!
>>
>> further i am looking for a simple installation guide with centos. i cant 
>> find one anywhere. most of the blogs and guides are for ubuntu.
>>
>> what I need to know is the bunch of files and config files I have to keep 
>> on the tftp server for puppet/razor to work. if anyone can point me to 
>> that, it would be helpful.
>>
>> thanks
>>
>>  -- 
>> 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 puppet-users...@googlegroups.com .
>> To view 

[Puppet Users] The error we caught said '407 "authenticationrequired"' during module install behind proxy

2013-12-07 Thread Arvind P R
I read at a number of places that if my puppet master is behind a proxy 
which requires authentication 

puppet module command does not work

despite setting the global parameters 
http_proxy, https_proxy on bash the command throws an error

[root@centos-razor ~]# puppet module install saz/dnsmasq --force
Notice: Preparing to install into /etc/puppetlabs/puppet/modules ...
Notice: Downloading from https://forge.puppetlabs.com ...
Error: Could not connect to https://forge.puppetlabs.com
  There was a network communications problem
The error we caught said '407 "authenticationrequired"'
Check your network connection and try again


setting the values http_proxy_host and http_proxy_port inside puppet.conf 
doesnt help either, as there is a no way I can set username and password 
there.


Is there a workaround for this?

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/9b5d67f5-42d2-4a45-88be-cb4c0f49821e%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] puppet apply or puppet agent -t fails on razor installation. Need help on razor too.

2013-12-07 Thread Arvind P R
My puppet master server is working fine and i now installed razor module on 
the same server.

i downloaded the tar.gz from https://forge.puppetlabs.com/puppetlabs/razor and 
did the installation using 

puppet module install  --ignore-dependencies. 
i took care of all the dependencies too.

*My puppet server is behind a corporate authenticated proxy which prevents 
me from using "puppet module install". puppet bug!!*

post razor installation, I included the following lines in 

/etc/puppetlabs/puppet/manifests/site.pp

node puppet_master {
  include razor
}

now if i try to run the following commands:

puppet apply /etc/puppetlabs/puppet/manifests/site.pp
OR
puppet agent -t

on the same server, the commands hang

puppet apply hangs without any message while the following is shown on 
puppet agent -t

[root@centos-razor ~]# puppet agent -t
Info: Retrieving plugin
Info: Loading facts in 
/opt/puppet/share/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/stdlib/lib/facter/root_home.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/stdlib/lib/facter/pe_version.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/postgresql/lib/facter/postgres_default_version.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/concat/lib/facter/concat_basedir.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/pe_common/lib/facter/windows.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/pe_puppetdb/lib/facter/puppetdb_server_status.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/auth_conf/lib/facter/custom_auth_conf.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/firewall/lib/facter/ip6tables_version.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
Info: Loading facts in 
/opt/puppet/share/puppet/modules/firewall/lib/facter/iptables_version.rb
Info: Loading facts in 
/var/opt/lib/pe-puppet/lib/facter/puppetdb_server_status.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/puppet_vardir.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/facter_dot_d.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/windows.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/root_home.rb
Info: Loading facts in 
/var/opt/lib/pe-puppet/lib/facter/postgres_default_version.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/pe_version.rb
Info: Loading facts in 
/var/opt/lib/pe-puppet/lib/facter/ip6tables_version.rb
Info: Loading facts in 
/var/opt/lib/pe-puppet/lib/facter/iptables_persistent_version.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/concat_basedir.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/iptables_version.rb
Info: Loading facts in /var/opt/lib/pe-puppet/lib/facter/custom_auth_conf.rb
Info: Caching catalog for centos-razor.a100.lab
Info: Applying configuration version '1386442284'

the command does not complete!!

further i am looking for a simple installation guide with centos. i cant 
find one anywhere. most of the blogs and guides are for ubuntu.

what I need to know is the bunch of files and config files I have to keep 
on the tftp server for puppet/razor to work. if anyone can point me to 
that, it would be helpful.

thanks

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/9e7b9931-cd55-40d8-9212-77444b5f96e2%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Puppet Users] Re: [windows server 2008 r2] puppet errors in 3.3.0 on exchange database servers

2013-12-02 Thread Arvind P R
That worked. Thank you :)

On Tuesday, December 3, 2013 1:57:52 AM UTC+5:30, Rob Reynolds wrote:
>
> This change would need to get applied to the node (the agent box). 
> Apologies I missed where you said you made the change to the puppet master 
> and not the node.
>
> Most likely that will be at C:\Program Files (x86)\Puppet 
> Labs\Puppet\facter\lib\facter\util\ip\windows.rb (your path may be slightly 
> different).
>
>
> On Mon, Dec 2, 2013 at 1:51 PM, Arvind P R 
> > wrote:
>
>> Thanks for your prompt answer.
>>
>> I ran this on the windows (Hyper-V) node which  is running MSCS cluster.
>> Microsoft Windows [Version 6.3.9600]
>> (c) 2013 Microsoft Corporation. All rights reserved.
>>
>> C:\Users\administrator.A1000>facter --trace --debug
>> ←[0;32mNot an EC2 host←[0m
>> C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/facter/util/ip.r
>> b:39:in `alphafy': undefined method `gsub' for nil:NilClass 
>> (NoMethodError)
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/interfaces.rb:35:in `block (2 levels) in '
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/interfaces.rb:34:in `each'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/interfaces.rb:34:in `block in '
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/interfaces.rb:29:in `each'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/interfaces.rb:29:in `'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:95:in `load'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:95:in `load_file'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:46:in `block (2 levels) in load_all'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:41:in `each'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:41:in `block in load_all'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:38:in `each'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/loader.rb:38:in `load_all'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/util/collection.rb:114:in `load_all'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter.rb:118:in `block (2 levels) in singletonclass'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/lib/fac
>> ter/application.rb:45:in `run'
>> from C:/Program Files (x86)/Puppet Labs/Puppet 
>> Enterprise/facter/bin/fac
>> ter:16:in `'
>>
>>
>> Thanks,
>> Arvind
>>
>> On Tuesday, December 3, 2013 1:17:29 AM UTC+5:30, Rob Reynolds wrote:
>>>
>>>
>>>
>>>
>>> On Mon, Dec 2, 2013 at 12:31 PM, Arvind P R  wrote:
>>>
>>>> Hello,
>>>>
>>>> I am a new user.
>>>> My pupet is running on CentOS and I am facing the same issue on my 
>>>> windows 2012 box.
>>>> Can you please tell me where I should be running this?
>>>>
>>>> on the puppetmaster server or agent?
>>>>
>>>> I didnt make the changes to the windows.rb file but I still face the 
>>>> same issue.
>>>>
>>>> [root@puppet-server-new ~]# find / -name windows.rb
>>>> /opt/puppet/libexec/mcollective/mcollective/util/
>>>> puppet_agent_mgr/v3/windows.rb
>>>> /opt/puppet/libexec/mcollective/mcollective/util/
>>>> puppet_agent_mgr/v2/windows.rb
>>>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/util/windows.rb
>>>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/file/windows.rb
>>>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/service/windows.rb
>>>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/exec/windows.rb
>>>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/package/windows.rb
>>>> /opt/pupp

Re: [Puppet Users] Re: [windows server 2008 r2] puppet errors in 3.3.0 on exchange database servers

2013-12-02 Thread Arvind P R
Thanks for your prompt answer.

I ran this on the windows (Hyper-V) node which  is running MSCS cluster.
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.

C:\Users\administrator.A1000>facter --trace --debug
←[0;32mNot an EC2 host←[0m
C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/facter/util/ip.r
b:39:in `alphafy': undefined method `gsub' for nil:NilClass (NoMethodError)
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/interfaces.rb:35:in `block (2 levels) in '
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/interfaces.rb:34:in `each'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/interfaces.rb:34:in `block in '
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/interfaces.rb:29:in `each'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/interfaces.rb:29:in `'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:95:in `load'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:95:in `load_file'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:46:in `block (2 levels) in load_all'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:41:in `each'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:41:in `block in load_all'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:38:in `each'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/loader.rb:38:in `load_all'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/util/collection.rb:114:in `load_all'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter.rb:118:in `block (2 levels) in singletonclass'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/lib/fac
ter/application.rb:45:in `run'
from C:/Program Files (x86)/Puppet Labs/Puppet 
Enterprise/facter/bin/fac
ter:16:in `'


Thanks,
Arvind

On Tuesday, December 3, 2013 1:17:29 AM UTC+5:30, Rob Reynolds wrote:
>
>
>
>
> On Mon, Dec 2, 2013 at 12:31 PM, Arvind P R 
> > wrote:
>
>> Hello,
>>
>> I am a new user.
>> My pupet is running on CentOS and I am facing the same issue on my 
>> windows 2012 box.
>> Can you please tell me where I should be running this?
>>
>> on the puppetmaster server or agent?
>>
>> I didnt make the changes to the windows.rb file but I still face the same 
>> issue.
>>
>> [root@puppet-server-new ~]# find / -name windows.rb
>>
>> /opt/puppet/libexec/mcollective/mcollective/util/puppet_agent_mgr/v3/windows.rb
>>
>> /opt/puppet/libexec/mcollective/mcollective/util/puppet_agent_mgr/v2/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/util/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/file/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/service/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/exec/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/package/windows.rb
>> /opt/puppet/lib/ruby/site_ruby/1.9.1/facter/util/ip/windows.rb
>>
>> /opt/puppet/share/puppet/modules/reboot/lib/puppet/provider/reboot/windows.rb
>> /opt/puppet/share/puppet/modules/pe_common/lib/facter/windows.rb
>>
>> /opt/puppet/share/puppet/modules/pe_mcollective/files/plugins/util/puppet_agent_mgr/v3/windows.rb
>>
>> /opt/puppet/share/puppet/modules/pe_mcollective/files/plugins/util/puppet_agent_mgr/v2/windows.rb
>>
>> /opt/puppet/share/vendor/ruby/1.9.1/gems/sass-3.2.9/vendor/listen/lib/listen/adapters/windows.rb
>> /root/facter-1.7.3/lib/facter/util/ip/windows.rb
>> /var/opt/lib/pe-puppet/lib/puppet/provider/reboot/windows.rb
>> /var/opt/lib/pe-puppet/lib/facter/windows.rb
>> /usr/lib/ruby/site_ruby/1.8/facter/util/ip/windows.rb
>>
>> I see a bunch of windows.rb files.
>>
>> I made the changes to the below one on puppetmaster box.
>> [root@puppet-server-new ~]# vi 
>> /usr/lib/ruby/site_ruby/1.8/facter/util/ip/windows.rb
>>
>>
>> Still the same issue on Windows 2012 Hyper-V box running MSCS
>> C:\Users\administrator.A1000>puppet agent -t
>> Info: Retrieving plugin
>> Error: Could not retrieve local facts: undefined method `gsub' for 
>> nil:NilClass
>> Error

Re: [Puppet Users] Re: [windows server 2008 r2] puppet errors in 3.3.0 on exchange database servers

2013-12-02 Thread Arvind P R
Hello,

I am a new user.
My pupet is running on CentOS and I am facing the same issue on my windows 
2012 box.
Can you please tell me where I should be running this?

on the puppetmaster server or agent?

I didnt make the changes to the windows.rb file but I still face the same 
issue.

[root@puppet-server-new ~]# find / -name windows.rb
/opt/puppet/libexec/mcollective/mcollective/util/puppet_agent_mgr/v3/windows.rb
/opt/puppet/libexec/mcollective/mcollective/util/puppet_agent_mgr/v2/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/util/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/file/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/service/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/exec/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/provider/package/windows.rb
/opt/puppet/lib/ruby/site_ruby/1.9.1/facter/util/ip/windows.rb
/opt/puppet/share/puppet/modules/reboot/lib/puppet/provider/reboot/windows.rb
/opt/puppet/share/puppet/modules/pe_common/lib/facter/windows.rb
/opt/puppet/share/puppet/modules/pe_mcollective/files/plugins/util/puppet_agent_mgr/v3/windows.rb
/opt/puppet/share/puppet/modules/pe_mcollective/files/plugins/util/puppet_agent_mgr/v2/windows.rb
/opt/puppet/share/vendor/ruby/1.9.1/gems/sass-3.2.9/vendor/listen/lib/listen/adapters/windows.rb
/root/facter-1.7.3/lib/facter/util/ip/windows.rb
/var/opt/lib/pe-puppet/lib/puppet/provider/reboot/windows.rb
/var/opt/lib/pe-puppet/lib/facter/windows.rb
/usr/lib/ruby/site_ruby/1.8/facter/util/ip/windows.rb

I see a bunch of windows.rb files.

I made the changes to the below one on puppetmaster box.
[root@puppet-server-new ~]# vi 
/usr/lib/ruby/site_ruby/1.8/facter/util/ip/windows.rb


Still the same issue on Windows 2012 Hyper-V box running MSCS
C:\Users\administrator.A1000>puppet agent -t
Info: Retrieving plugin
Error: Could not retrieve local facts: undefined method `gsub' for 
nil:NilClass
Error: Failed to apply catalog: Could not retrieve local facts: undefined 
method
 `gsub' for nil:NilClass


On Friday, October 4, 2013 12:17:38 AM UTC+5:30, Rob Reynolds wrote:
>
> This verifies for us that this is a gating issue. 
>
> Would you feel comfortable helping us verify that we've fixed this issue 
> for you?
>
>
> https://github.com/ferventcoder/facter/blob/874a5a96ac5fa778c50f1e93424850022b1756cf/lib/facter/util/ip/windows.rb#L46-L47
>
>
>
>
> On Thu, Oct 3, 2013 at 1:42 PM, Christian Koep 
> > wrote:
>
>> Yes, thats all i got from *facter --trace --debug*
>>
>>
>> On Thu, Oct 3, 2013 at 8:41 PM, Rob Reynolds 
>> 
>> > wrote:
>>
>>> Was this the entire log (minus anything you feel sensitive)?
>>>
>>>
>>> On Thu, Oct 3, 2013 at 1:15 PM, cko >wrote:
>>>
 https://gist.github.com/anonymous/6814400


 On Thursday, October 3, 2013 5:23:05 PM UTC+2, Rob Reynolds wrote:

> You should be able to run 
>
> facter --trace --debug
>
>
> On Wed, Oct 2, 2013 at 5:18 PM, cko  wrote:
>
>> Hi Ethan,
>>
>> what's the exact command that i would have to use? 
>>
>>
>> On Wednesday, October 2, 2013 11:35:29 PM UTC+2, Ethan Brown wrote:
>>
>>> Christian - 
>>>
>>> I'm doing the final verification of our fix, and was hoping that I 
>>> could get the output from Facter run by itself?
>>>
>>>
>>>
>>> On Fri, Sep 20, 2013 at 1:36 PM, Rob Reynolds 
>>> wrote:
>>>
  I would say with all of this in mind we move forward with a fix 
 where we look to see that the network adapter itself is also enabled. 
 This 
 is laid out in the ticket that I noted earlier.
  

 On Fri, Sep 20, 2013 at 7:44 AM, Rich Siegel wrote:

>  Exchange DAG is essentially a cluster and the adapter in question 
> the dag ip.
>
> My guess is the logic for adapters should be modded for when 
> netconnectionid is not null.
>
> In general don't try to mess with hidden adapters on dags unless 
> you understand ramifications.
>
> --
> 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 puppet-users...@googlegroups.com.
> To post to this group, send email to puppet...@googlegroups.com.
>
> Visit this group at http://groups.google.com/group/puppet-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>



 -- 
 Rob Reynolds
 Developer, Puppet Labs

 Join us at PuppetConf 2014, September 23-24 in San Francisco
  
 -- 
 You received this message because you are subscribed to the Google 
 Groups "Puppet Users" group.
 To unsubscribe from this group and stop receiving emails fr

[Puppet Users] Re: puppet module search using an HTTP proxy

2013-12-01 Thread Arvind P R
no Stephen this doesnt work
is there any other way of installing puppet modules?
through yum?

On Sunday, December 1, 2013 9:10:15 AM UTC+5:30, Stephen Wallace wrote:
>
> Maybe something as simple as using httpS? The puppet module face requires 
> https when downloading I believe.
>
> Try 'export https_proxy=my.proxy.com'
>
> I hope this helps.
>
> Stephen
>
>

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/5d640621-d1e3-40f2-a3ee-f40db3c7b27a%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] install puppet modules behind a proxy

2013-11-30 Thread Arvind P R
Hi

I installed puppet on centos for the first time yesterday. the default 
installation via YUM didnt install any modules
i am using apache and mysql for the webserver and database.

my question is there no way to install the modules if i am behind a proxy?
[root@puppet ~]# puppet --version
3.3.2
[root@puppet conf.d]# cat /etc/*release*
CentOS release 6.4 (Final)
CentOS release 6.4 (Final)
CentOS release 6.4 (Final)
cpe:/o:centos:linux:6:GA
[root@puppet conf.d]#


At a number of places (forums) I find that it is not supported.

I also installed and configured puppet dashboard which is running on port 
3000. I am curious to know what runs on port 8140? The document root 
specified on the file puppetmaster.conf
[root@puppet conf.d]# ll /usr/share/puppet/rack/puppetmasterd/public/
total 0

is empty. If I use *dashboard* do I still need the default puppet web page?

[root@puppet ~]# cd /etc/httpd/conf.d/
[root@puppet conf.d]# ll
total 36
-rw-r--r--. 1 root root 4129 Nov 29 15:18 dashboard-vhost.conf
-rw-r--r--. 1 root root 1932 Nov 29 20:36 puppetmaster.conf
-rw-r--r--. 1 root root  392 Aug 13 23:00 README
-rw-r--r--. 1 root root   21 Nov 29 15:01 sample.html
-rw-r--r--. 1 root root 9473 Aug  2 17:29 ssl.conf
-rw-r--r--. 1 root root  299 Aug  2 17:29 welcome.conf




-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/0b0703ca-7fa3-4862-9e66-dd2fa19d5a7e%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.