Jira (PUP-3000) Could not get fact fqdn/ipaddress

2017-05-18 Thread Moses Mendoza (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Moses Mendoza updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3000 
 
 
 
  Could not get fact fqdn/ipaddress  
 
 
 
 
 
 
 
 
 

Change By:
 
 Moses Mendoza 
 
 
 

Labels:
 
 github  triaged 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-3000) Could not get fact fqdn/ipaddress

2017-05-15 Thread Ruth Linehan (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ruth Linehan updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3000 
 
 
 
  Could not get fact fqdn/ipaddress  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ruth Linehan 
 
 
 

Labels:
 
 github  triaged 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-20 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










It appears that after contacting Phusion, it appears that NGINX is the source of the problem: https://github.com/phusion/passenger/issues/1263#issuecomment-52796662
NGINX strips all environment variables by default: http://nginx.org/en/docs/ngx_core_module.html#env
So, while this is not a Puppet Master issue, it would be very nice if the documentation could at least be updated to specify that NGINX kills the PATH (and everything else for that matter).












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   {noformat}  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress  {noformat}   In ...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 














-- 
You received this message because you are subscribed 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-18 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










There could be some weird configuration inside of Docker which doesn't set the environment variables when user switching occurs. 
However, I think it would be at least a sane default to include the following in config.ru:



if not ENV['PATH']
ENV['PATH'] = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
end



The nice thing about this fix is that nobody loses as a result of it. If PATH is set, it isn't changed. If not, then it automatically fails over. 












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   {noformat}  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress  {noformat}   In ...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










I have found the real cause of the bug and will update the JIRA description above.
The real cause of all of this is that there is no PATH environment variable set when config.ru is run by Passenger. 
Inserting the following code:
 if not ENV['PATH'] puts THERE'S NO PATH end
into config.ru demonstrates the problem, as we see THERE'S NO PATH in the logs. As a workaround, Puppet should default over to using /usr/sbin:/usr/bin:/sbin:/bin as PATH if it's not set, rather than /usr/sbin:/sbin.












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress   In the codebase it's locate...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 






Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 IhaveaweirdissuewherethePuppetMasterisgeneratingacertificatecalled.mydomain.com(ie:.$domain).Lookingintothelogs,Iseethefollowing:Aug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactfqdnAug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactipaddressInthecodebaseit'slocatedhere:https://github.com/puppetlabs/puppet/blob/07a37ff92efac39e264f8279613594c95d650d63/lib/puppet/indirector/catalog/compiler.rb#L169WhenIinsertthefollowingcodeintheset_server_factsmethod:Facter.loadfactsPuppet.warningFacter.to_hashIseethefollowingoutputinsyslog: {{noformat}} Aug102:10:40kungfumasterpuppet-master[5565]:{domain=mydomain.com,timezone=UTC,uptime=6days,memorysize=0.00MB,memoryfree=0.00MB,memorysize_mb=0.00,memoryfree_mb=0.00,ps=ps-ef,uptime_days=6,uptime_seconds=518934,path=:/usr/sbin:/sbin,puppetversion=3.6.2,augeasversion=1.2.0,sshdsakey=B3NzaC1kc3MAAACBALgbR5MWx0PsKsLGV9o+krvqbiSc55TKavimNdXKjDGTZ6GQQ8CjyJKP52rt2QrxwkiCcFk+KibsY1VOyBVdZvH5fWo551xqpSVt9YaY74SxgyvVMcX6ROVTbm3jWVBlEzS312jtoMFbWZMxQP2CN2IOi9wu15+sHj8VUTqihRShFQDFWCgbS/u9Ld3o/Oyvq1Ab3SOORQAAAIACfGOvHQb5jVXmsQWi1HKOsVQx8mC2qXwa8bqQSHTN1O+91vQ9czjZY/ZlibvBirtqlG3L14kMDehzf9GueVgzF7YK8UVYx5AsZ3GBp/xUw6QmQV874RwKq8PO4+j8ze4/xi3oiJKQOHWWN5HHAiW4bMFaqTfY9ClIDyiY290vhIBEhHD1qvlZAqVtg83Itmz9qArM9KghkWpT3TIqcCCCVJaQahX9ESj/i28bDSyMpPsUpga/7yPGpZ1x997a37Ez3wR/+KNkjCN3FkjY1Kr3C64v4JWAviQid33V3wJfpVI+VIfayR/OS8qy1ZrIqdUlsiLr27TBg/umZmtfx1g9Iw==,sshfp_dsa=SSHFP21ba4c2e9a86297ff0ad38b522425d624d888ce778\nSSHFP2225c636a0682c8ea0d546aaa2ab4e12016ea6cfc603a241a84c0907fc9c22a388,sshrsakey=B3NzaC1yc2EDAQABAAABAQCfOO6ZxMjN53A6XpEs/yUFhp5GhDem6gCcMxfYTNvcyaEFiaVb7p6F9C3aFVs6cf2rG6/ToHktMWvdn4ctNFaH1kwGvlY7BJvsqQ9MlYhIHYb23Uk+9PE83d6aNJuvR8QuEtZAmBq1Wwku5c0G4gHVvJj/U/NaZlTE70JSyMax5EGo8m0JYiFL4Z+pQubUi3rqwRGhZYsyXwzZrAMfWsuG+sPUCPpejoUY/XXRIwQ3gfvsbzrn99zVeGxQ90eZkAQTs+s/iEiWQ8zToMG0PyYu/Dht52gu98GfZqC8yT7mCwl771u9IcibdyHU+XHFRyWO89avpbUDgIpSafH1bJJj,sshfp_rsa=SSHFP11a02b44bd5d841119d359a38cdec285f4e107a12f\nSSHFP121337686dc142d375e803c9b09413509629141baa0e7abe1d2aa8fb7a88369883,sshecdsakey=E2VjZHNhLXNoYTItbmlzdHAyNTYIbmlzdHAyNTYAAABBBC8AtVEIzCTjKv1efUC7AGPqcqnrSrbe5Mt3tVhhT9lP2Rn8ZtCQYwaey+YKvbs7wEFZ+BEeR2aMnjXPXSoWcGc=,sshfp_ecdsa=SSHFP3102935f27031c5b8a1ea125ba0e7c99c78722b407\nSSHFP322f95d655a7fe1a41ce15e23721678a0cdb4acc36bbeaba1642588b996dbc1975,sshed25519key=C3NzaC1lZDI1NTE5IK3eXW1MyH61XmaLCmii1uNH2L5DAmg1GbroeTWahV/7,sshfp_ed25519=SSHFP41479b19005f3f428e031753bce06ef2ea5e02086e\nSSHFP42fe6ffd9e147621fbef429b3e190c4cdc56e1ac1b8a368682f183bd8cc0c1f85e,facterversion=2.1.0,rubysitedir=/usr/local/lib/site_ruby/1.9.1,uptime_hours=144,rubyversion=1.9.3} {{noformat}}   

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 IhaveaweirdissuewherethePuppetMasterisgeneratingacertificatecalled.mydomain.com(ie:.$domain).Lookingintothelogs,Iseethefollowing: {noformat} Aug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactfqdnAug100:01:14kungfumasterpuppet-master[447]:Couldnotretrievefactipaddress {noformat}   

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 IhaveaweirdissuewherethePuppetMasterisgeneratingacertificatecalled.mydomain.com(ie:.$domain).Lookingintothelogs,Iseethefollowing:Aug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactfqdnAug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactipaddressInthecodebaseit'slocatedhere:https://github.com/puppetlabs/puppet/blob/07a37ff92efac39e264f8279613594c95d650d63/lib/puppet/indirector/catalog/compiler.rb#L169WhenIinsertthefollowingcodeintheset_server_factsmethod:{code:ruby}Facter.loadfactsPuppet.warningFacter.to_hash{code}Iseethefollowingoutputinsyslog:{noformat}Aug102:10:40kungfumasterpuppet-master[5565]:{domain=mydomain.com,timezone=UTC,uptime=6days,memorysize=0.00MB,memoryfree=0.00MB,memorysize_mb=0.00,memoryfree_mb=0.00,ps=ps-ef,uptime_days=6,uptime_seconds=518934,path=:/usr/sbin:/sbin,puppetversion=3.6.2,augeasversion=1.2.0,sshdsakey=B3NzaC1kc3MAAACBALgbR5MWx0PsKsLGV9o+krvqbiSc55TKavimNdXKjDGTZ6GQQ8CjyJKP52rt2QrxwkiCcFk+KibsY1VOyBVdZvH5fWo551xqpSVt9YaY74SxgyvVMcX6ROVTbm3jWVBlEzS312jtoMFbWZMxQP2CN2IOi9wu15+sHj8VUTqihRShFQDFWCgbS/u9Ld3o/Oyvq1Ab3SOORQAAAIACfGOvHQb5jVXmsQWi1HKOsVQx8mC2qXwa8bqQSHTN1O+91vQ9czjZY/ZlibvBirtqlG3L14kMDehzf9GueVgzF7YK8UVYx5AsZ3GBp/xUw6QmQV874RwKq8PO4+j8ze4/xi3oiJKQOHWWN5HHAiW4bMFaqTfY9ClIDyiY290vhIBEhHD1qvlZAqVtg83Itmz9qArM9KghkWpT3TIqcCCCVJaQahX9ESj/i28bDSyMpPsUpga/7yPGpZ1x997a37Ez3wR/+KNkjCN3FkjY1Kr3C64v4JWAviQid33V3wJfpVI+VIfayR/OS8qy1ZrIqdUlsiLr27TBg/umZmtfx1g9Iw==,sshfp_dsa=SSHFP21ba4c2e9a86297ff0ad38b522425d624d888ce778\nSSHFP2225c636a0682c8ea0d546aaa2ab4e12016ea6cfc603a241a84c0907fc9c22a388,sshrsakey=B3NzaC1yc2EDAQABAAABAQCfOO6ZxMjN53A6XpEs/yUFhp5GhDem6gCcMxfYTNvcyaEFiaVb7p6F9C3aFVs6cf2rG6/ToHktMWvdn4ctNFaH1kwGvlY7BJvsqQ9MlYhIHYb23Uk+9PE83d6aNJuvR8QuEtZAmBq1Wwku5c0G4gHVvJj/U/NaZlTE70JSyMax5EGo8m0JYiFL4Z+pQubUi3rqwRGhZYsyXwzZrAMfWsuG+sPUCPpejoUY/XXRIwQ3gfvsbzrn99zVeGxQ90eZkAQTs+s/iEiWQ8zToMG0PyYu/Dht52gu98GfZqC8yT7mCwl771u9IcibdyHU+XHFRyWO89avpbUDgIpSafH1bJJj,sshfp_rsa=SSHFP11a02b44bd5d841119d359a38cdec285f4e107a12f\nSSHFP121337686dc142d375e803c9b09413509629141baa0e7abe1d2aa8fb7a88369883,sshecdsakey=E2VjZHNhLXNoYTItbmlzdHAyNTYIbmlzdHAyNTYAAABBBC8AtVEIzCTjKv1efUC7AGPqcqnrSrbe5Mt3tVhhT9lP2Rn8ZtCQYwaey+YKvbs7wEFZ+BEeR2aMnjXPXSoWcGc=,sshfp_ecdsa=SSHFP3102935f27031c5b8a1ea125ba0e7c99c78722b407\nSSHFP322f95d655a7fe1a41ce15e23721678a0cdb4acc36bbeaba1642588b996dbc1975,sshed25519key=C3NzaC1lZDI1NTE5IK3eXW1MyH61XmaLCmii1uNH2L5DAmg1GbroeTWahV/7,sshfp_ed25519=SSHFP41479b19005f3f428e031753bce06ef2ea5e02086e\nSSHFP42fe6ffd9e147621fbef429b3e190c4cdc56e1ac1b8a368682f183bd8cc0c1f85e,facterversion=2.1.0,rubysitedir=/usr/local/lib/site_ruby/1.9.1,uptime_hours=144,rubyversion=1.9.3}{noformat}Asyoucansee,there'snoIPaddresspresentthereorFQDNinthefactsforsomereason.UsingRubyonthesamemachine,IcangettheFQDNandIPaddressfactseasily:{code :ruby } eorequire require 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 IhaveaweirdissuewherethePuppetMasterisgeneratingacertificatecalled.mydomain.com(ie:.$domain).Lookingintothelogs,Iseethefollowing:Aug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactfqdnAug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactipaddressInthecodebaseit'slocatedhere:https://github.com/puppetlabs/puppet/blob/07a37ff92efac39e264f8279613594c95d650d63/lib/puppet/indirector/catalog/compiler.rb#L169WhenIinsertthefollowingcodeintheset_server_factsmethod: {code:ruby} Facter.loadfactsPuppet.warningFacter.to_hash {code}   Iseethefollowingoutputinsyslog:{noformat}Aug102:10:40kungfumasterpuppet-master[5565]:{domain=mydomain.com,timezone=UTC,uptime=6days,memorysize=0.00MB,memoryfree=0.00MB,memorysize_mb=0.00,memoryfree_mb=0.00,ps=ps-ef,uptime_days=6,uptime_seconds=518934,path=:/usr/sbin:/sbin,puppetversion=3.6.2,augeasversion=1.2.0,sshdsakey=B3NzaC1kc3MAAACBALgbR5MWx0PsKsLGV9o+krvqbiSc55TKavimNdXKjDGTZ6GQQ8CjyJKP52rt2QrxwkiCcFk+KibsY1VOyBVdZvH5fWo551xqpSVt9YaY74SxgyvVMcX6ROVTbm3jWVBlEzS312jtoMFbWZMxQP2CN2IOi9wu15+sHj8VUTqihRShFQDFWCgbS/u9Ld3o/Oyvq1Ab3SOORQAAAIACfGOvHQb5jVXmsQWi1HKOsVQx8mC2qXwa8bqQSHTN1O+91vQ9czjZY/ZlibvBirtqlG3L14kMDehzf9GueVgzF7YK8UVYx5AsZ3GBp/xUw6QmQV874RwKq8PO4+j8ze4/xi3oiJKQOHWWN5HHAiW4bMFaqTfY9ClIDyiY290vhIBEhHD1qvlZAqVtg83Itmz9qArM9KghkWpT3TIqcCCCVJaQahX9ESj/i28bDSyMpPsUpga/7yPGpZ1x997a37Ez3wR/+KNkjCN3FkjY1Kr3C64v4JWAviQid33V3wJfpVI+VIfayR/OS8qy1ZrIqdUlsiLr27TBg/umZmtfx1g9Iw==,sshfp_dsa=SSHFP21ba4c2e9a86297ff0ad38b522425d624d888ce778\nSSHFP2225c636a0682c8ea0d546aaa2ab4e12016ea6cfc603a241a84c0907fc9c22a388,sshrsakey=B3NzaC1yc2EDAQABAAABAQCfOO6ZxMjN53A6XpEs/yUFhp5GhDem6gCcMxfYTNvcyaEFiaVb7p6F9C3aFVs6cf2rG6/ToHktMWvdn4ctNFaH1kwGvlY7BJvsqQ9MlYhIHYb23Uk+9PE83d6aNJuvR8QuEtZAmBq1Wwku5c0G4gHVvJj/U/NaZlTE70JSyMax5EGo8m0JYiFL4Z+pQubUi3rqwRGhZYsyXwzZrAMfWsuG+sPUCPpejoUY/XXRIwQ3gfvsbzrn99zVeGxQ90eZkAQTs+s/iEiWQ8zToMG0PyYu/Dht52gu98GfZqC8yT7mCwl771u9IcibdyHU+XHFRyWO89avpbUDgIpSafH1bJJj,sshfp_rsa=SSHFP11a02b44bd5d841119d359a38cdec285f4e107a12f\nSSHFP121337686dc142d375e803c9b09413509629141baa0e7abe1d2aa8fb7a88369883,sshecdsakey=E2VjZHNhLXNoYTItbmlzdHAyNTYIbmlzdHAyNTYAAABBBC8AtVEIzCTjKv1efUC7AGPqcqnrSrbe5Mt3tVhhT9lP2Rn8ZtCQYwaey+YKvbs7wEFZ+BEeR2aMnjXPXSoWcGc=,sshfp_ecdsa=SSHFP3102935f27031c5b8a1ea125ba0e7c99c78722b407\nSSHFP322f95d655a7fe1a41ce15e23721678a0cdb4acc36bbeaba1642588b996dbc1975,sshed25519key=C3NzaC1lZDI1NTE5IK3eXW1MyH61XmaLCmii1uNH2L5DAmg1GbroeTWahV/7,sshfp_ed25519=SSHFP41479b19005f3f428e031753bce06ef2ea5e02086e\nSSHFP42fe6ffd9e147621fbef429b3e190c4cdc56e1ac1b8a368682f183bd8cc0c1f85e,facterversion=2.1.0,rubysitedir=/usr/local/lib/site_ruby/1.9.1,uptime_hours=144,rubyversion=1.9.3}{noformat}Asyoucansee,there'snoIPaddresspresentthereorFQDNinthefactsforsomereason.UsingRubyonthesamemachine,IcangettheFQDNandIPaddressfactseasily: require {code:ruby}eorequire facterputsFacter.value(fqdn)putsFacter.value(ipaddress) {code}   

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 IhaveaweirdissuewherethePuppetMasterisgeneratingacertificatecalled.mydomain.com(ie:.$domain).Lookingintothelogs,Iseethefollowing:{noformat}Aug100:01:14kungfumasterpuppet-master[447]:CouldnotretrievefactfqdnAug100:01:14kungfumasterpuppet-master[447]:Couldnotretrievefactipaddress{noformat}Inthecodebaseit'slocatedhere:https://github.com/puppetlabs/puppet/blob/07a37ff92efac39e264f8279613594c95d650d63/lib/puppet/indirector/catalog/compiler.rb#L169WhenIinsertthefollowingcodeintheset_server_factsmethod:{code :ruby 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-13 Thread Eric Sorenson (JIRA)
Title: Message Title










 

 Eric Sorenson commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










Hmmm, I suspect there's something else going on, otherwise absolutely everyone would be having the same problem. 












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   {noformat}  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress  {noformat}   In ...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 














-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-06 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay









 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-06 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










I believe that I've found the source of the bug via help of a friend.
Evidently, PATH is not being carried over properly by the Puppet Master when it runs in -

rack mode. It works in WEBrick, but not in Passenger/
-rack mode. Basically, there is a bug.
As a workaround, you can currently either define `--path` in config.ru or define `path=...` in /etc/puppet/puppet.conf.












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress   In the codebase it's locate...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 














-- 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-08-01 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










I have tested echoing the Ruby $LOAD_PATH variable both in Passenger mode and in Standalone and both have the same value.
I have also tested echoing the Puppet factpath setting both in Passenger mode and in Standalone mode and they both have the same value.
It seems that when passed the --rack parameter, something changes as to how it reads facts. I see so many more facts listed in Standalone than when running in Passenger, so I'm not sure why that is, but that's the core of the problem.












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress   In the codebase it's locate...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 














-- 
You received this 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-07-31 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay created an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Issue Type:

  Bug




Affects Versions:


 3.6.2




Assignee:

 Andy Parker




Components:


 Server




Created:


 31/Jul/14 7:29 PM




Environment:


https://github.com/rfkrocktk/docker-puppetmaster . Ubuntu 14.04 amd64, Docker container, using the Puppet APT repository with the latest Puppet version. No other bugs except for this, fully-functional master and agent.




Labels:


 github




Priority:

  Normal




Reporter:

 Naftuli Tzvi Kay










I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain). 
Looking into the logs, I see the following:
Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn Aug 1 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-07-31 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay commented on an issue


















  Re: Could not get fact fqdn/ipaddress 










Since I'm essentially using the provided rack configuration file which is installed by Puppet in /usr/share/puppet/ext/rack/config.ru, I'm not sure why it's not able to load the ipaddress and fqdn facts.












   

 Add Comment

























 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 







 I have a weird issue where the Puppet Master is generating a certificate called .mydomain.com (ie: .$domain).   Looking into the logs, I see the following:   Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact fqdn  Aug 1 00:01:14 kungfumaster puppet-master[447]: Could not retrieve fact ipaddress   In the codebase it's locate...















 This message was sent by Atlassian JIRA (v6.1.4#6159-sha1:44eaede)




 














-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit 

Jira (PUP-3000) Could not get fact fqdn/ipaddress

2014-07-31 Thread Naftuli Tzvi Kay (JIRA)
Title: Message Title










 

 Naftuli Tzvi Kay updated an issue


















 Puppet /  PUP-3000



  Could not get fact fqdn/ipaddress 










Change By:

 Naftuli Tzvi Kay