Jira (PUP-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg commented on  PUP-3821 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 
 
The merge of PR 3579 passed CI. But don't change state since that PR is clearly not sufficient. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-333) Hiera command line tool should support looking up facts from PuppetDB

2015-02-05 Thread Eli Young (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eli Young commented on  HI-333 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Hiera command line tool should support looking up facts from PuppetDB  
 
 
 
 
 
 
 
 
 
 
As a side note, the yaml fact source code remove its dependency on Puppet by using the safe_yaml gem to load yaml facts. Right now, if Puppet isn't present, it'll crash during the call to YAML.load_file(source). The yaml fact source would look like this when using safe_yaml: 
 
 
 
 
 
 
when :yaml 
 
 
 
 
  raise "Cannot find scope #{type} file #{source}" unless File.exist?(source) 
 
 
 
 
  
 
 
 
 
  require 'safe_yaml/load' 
 
 
 
 
  
 
 
 
 
  scope = SafeYAML.load_file(source) 
 
 
 
 
  
 
 
 
 
  # Puppet makes dumb yaml files that do not promote data reuse. 
 
 
 
 
  scope = scope['values'] unless scope['values'].nil?
 
 
 
 
 
 
 
Though this would cause issues

Jira (HI-333) Hiera command line tool should support looking up facts from PuppetDB

2015-02-05 Thread Eli Young (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eli Young commented on  HI-333 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Hiera command line tool should support looking up facts from PuppetDB  
 
 
 
 
 
 
 
 
 
 
I'll respond to the rest later but I want to point out that the Hiera binary tool already has a dependency on Puppet. Several, actually. The following lines are all pulled from the most recent commit on the stable branch. 
From the inventory service fact source: 
 
 
 
 
 
 
begin 
 
 
 
 
  require 'puppet/util/run_mode' 
 
 
 
 
  $puppet_application_mode = Puppet::Util::RunMode[:master] 
 
 
 
 
  require 'puppet' 
 
 
 
 
  Puppet.settings.parse 
 
 
 
 
  Puppet::Node::Facts.indirection.terminus_class = :rest 
 
 
 
 
  scope = YAML.load(Puppet::Node::Facts.indirection.find(source).to_yaml) 
 
 
 
 
  # Puppet makes dumb yaml files that do not promote data reuse. 
 
 
 
 
  scope = scope.values if scope.is_a?(Puppet::Node::Facts) 
 
 
 
 
 

Jira (PUP-3971) Unable to install Puppet Enterprise

2015-02-05 Thread Aaron Armstrong (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Aaron Armstrong assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3971 
 
 
 
  Unable to install Puppet Enterprise  
 
 
 
 
 
 
 
 
 

Change By:
 
 Aaron Armstrong 
 
 
 

Assignee:
 
 Aaron Armstrong 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg commented on  PUP-3821 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 
 
No idea on the segfault but to clarify: the gem is called 'cfacter' not 'libfacter' so the irb tests should be require 'cfacter'. 
And the cfacter gem is not a native extension, rather it uses ffi: https://github.com/puppetlabs/cfacter/blob/master/gem/lib/cfacter.rb 
All that said, no idea what's up with the segfault. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1219) postgres warning: there is already a transaction in progress

2015-02-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1219 
 
 
 
  postgres warning: there is already a transaction in progress  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Affects Version/s:
 
 PDB 2.2.2 
 
 
 

Story Points:
 
 2 
 
 
 

Issue Type:
 
 Improvement Bug 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1218) Metrics, Status & Logs: Add id to reports table

2015-02-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1218 
 
 
 
  Metrics, Status & Logs: Add id to reports table  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Summary:
 
 Metrics , Status & Logs :  add  Add  id to reports table 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-333) Hiera command line tool should support looking up facts from PuppetDB

2015-02-05 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  HI-333 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Hiera command line tool should support looking up facts from PuppetDB  
 
 
 
 
 
 
 
 
 
 
I am sorry, but there are no dependencies from Hiera to puppet (that I am aware of) but there are implementations of Hiera APIs in Puppet, but not the other way around. We simply cannot have circular dependencies - we must be able to release Hiera and puppet in the right order. And if such dependencies should indeed exist they should be removed. 
Adding circular dependencies is out of the question. 
Thanks for explaining the use case - I do see why you want to do something like that with real data from nodes. In order to make it work, any changes required in hiera will need to be able to work on their own (possibly do nothing, raise an error etc.). The functionality you want can then be added to puppet so it can extend hiera when they are both used together.  
In the PR, you asked if it was a better idea to add direct calls to PuppetDB. Again, sorry, Hiera is freestanding, and needs to be able to work (and be fully tested) on its own, direct calls will make it depend on PuppetDB. You can add it to Puppet, as long as the query to PuppetDB goes via the APIs that are not PuppetDB specific. This because Puppet does not have a hard dependency on PuppetDB. It has a dependency on Hiera though, so it can add things to Hiera given that it is supported by Hiera. 
I think the wanted functionality is best developed as a Puppet module that depends on Puppet, Hiera and PuppetDB. If you need instrumentation in Hiera to make it possible to plugin the behavior, then we can make that happen - it did not look like you needed special instrumentation in Puppet. 
Sorry that integration is difficult. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receivi

Jira (PUP-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Attachment:
 
 segfault.txt 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-3821 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 
 
Downloaded and installed x64 MSI from http://builds.puppetlabs.lan/puppet/fd9013a111071b774e993d362f500b0e3e81be58/artifacts/windows/ which contains Ethan Brown fix. Downloaded x64 cfacter from http://builds.puppetlabs.lan/cfacter/8eb21df4c9f9a18514a9349c8d174f729a6ec0fa/artifacts/windows/, removed the old cfacter in C:\Program Files and unzipped the new one: 
 
 
 
 
 
 
C:\Program Files\Puppet Labs\Puppet\bin>cfacter --version 
 
 
 
 
0.3.0 (commit 8eb21df4c9f9a18514a9349c8d174f729a6ec0fa) 
 
 
 
 
C:\Program Files\Puppet Labs\Puppet\bin>puppet --cfacter help 
 
 
 
 
Error: Could not initialize global default settings: cfacter version 0.2.0 or later is not installed.
 
 
 
 
 
 
 
Looks like ruby can't load libfacter at all: 
 
 
 
 
 
 
C:\Program Files\Puppet Labs\Puppet\sys\ruby\bin>.\irb 
 
 
 
 
irb(main):001:0> require 'libfacter' 
 
 
 
 
LoadError: cannot load such file -- libfacter
 
 
 
 
 
 
 

Jira (PUP-3971) Unable to install Puppet Enterprise

2015-02-05 Thread sanjay agrey (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 sanjay agrey created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3971 
 
 
 
  Unable to install Puppet Enterprise  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PUP 3.7.1 
 
 
 

Assignee:
 
 Aaron Armstrong 
 
 
 

Components:
 

 PE 
 
 
 

Created:
 

 2015/02/05 5:43 PM 
 
 
 

Priority:
 
  Blocker 
 
 
 

Reporter:
 
 sanjay agrey 
 
 
 
 
 
 
 
 
 
 
I downloaded puppet-enterprise-3.7.1-ubuntu-14.04-amd64 and ran puppet-enterprise-installer. I have specified hostname in /etc/hosts file. I choose monolithic installation./var/log/pe-installer/installer.log shows following error. [2015-02-06 01:11:10.630 UTC] INFO ** curl --tlsv1 -s https://puppetmaster.home.com:8140 [2015-02-06 01:11:11.664 UTC] INFO ** curl --tlsv1 -s https://puppetmaster.home.com:8140 [2015-02-06 01:11:12.741 UTC] INFO  [2015-02-06 01:11:12.741 UTC] INFO  [2015-02-06 01:11:12.774 UTC] WARN !! ERROR: The puppet master service failed to start within 120 [2015-02-06 01:11:12.774 UTC] WARN seconds; unable to proceed [2015-02-06 01:11:12.777 UTC] ERROR Failed to run PE installer on puppetmaster.home.com. [2015-02-06 01:11:12.844 UTC] INFO Shutting down after install with status error 
The following services are installed  root@home:/etc/init.d#  root@home:/etc/init.d# ls -ltr pe* -rwxr-xr-x 1 root root 3439 Mar 13 2014 pe-memcached -rwxr-xr-x 1 root root 6197 Sep 4 22:01 pe-postgresql -rwxr-xr-x 1 ro

Jira (PDB-1183) Logs: Performance testing and proving of the solution before work commencement

2015-02-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber assigned an issue to Kenneth Barber 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1183 
 
 
 
  Logs: Performance testing and proving of the solution before work commencement  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Assignee:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-96) Deprecate 'facter --puppet'

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-96 
 
 
 
  Deprecate 'facter --puppet'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Assignee:
 
 Eric Sorenson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-96) Deprecate 'facter --puppet'

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg commented on  FACT-96 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Deprecate 'facter --puppet'  
 
 
 
 
 
 
 
 
 
 
A couple comments from an IRC discussion that are omissions in 'puppet facts': 
 

it doesn't pretty-print facts, though there was an idea for that
 

it doesn't allow printing individual facts (or a CLI-specified list of facts)
 
 
 
 
 
 
 
 
[16:06:03]  	you need to do "puppet facts find dummyname", it gives a completely different output format, and you can't specify individual facts to look up 
 
 
 
 
[16:06:14]  	e.g. there is no equivalent of "facter -p mycustomfact" 
 
 
 
 
[16:06:37]  	in puppet 4, you can just say 'puppet facts' 
 
 
 
 
[16:06:42]  	ooh, nice 
 
 
 
 
[16:06:49]  	that dummyname thing is/was super irritating 
 
 
 
 
[16:07:30]  	i thought you could specify output format? but don't remember, maybe just yaml 
 
 
 
 
[16:07:32]  	wow puppet facts find is horrid 
 
 
 
 
[16:08:17]  	yaml or json 
 
 

Jira (PUP-3899) Write acceptance tests

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-3899 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Write acceptance tests  
 
 
 
 
 
 
 
 
 
 
Merged in 3da3b91 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper assigned an issue to Michael Smith 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Assignee:
 
 Josh Cooper Michael Smith 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-3821 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 
 
Also confirmed I'm actually using the 64-bit libfacter: 
 
 
 
 
 
 
C:\cfacter\bin> "c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\dumpbin.exe" /headers libfacter.dll 
 
 
 
 
... 
 
 
 
 
Dump of file libfacter.dll 
 
 
 
 
... 
 
 
 
 
FILE HEADER VALUES 
 
 
 
 
8664 machine (x64) 
 
 
 
 
  10 number of sections 
 
 
 
 
   0 time date stamp Wed Dec 31 16:00:00 1969 
 
 
 
 
  27D800 file pointer to symbol table 
 
 
 
 
A0E1 number of symbols 
 
 
 

Jira (PUP-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-3821 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 
 
Merged in fd9013a. However, even with this change, puppet is not able to load cfacter. Note I'm using our vendored ruby from puppet-win32-ruby/2.1.x-x64 
 
 
 
 
 
 
C:\work\puppet>git rev-parse HEAD 
 
 
 
 
fd9013a111071b774e993d362f500b0e3e81be58 
 
 
 
 
C:\work\puppet>ruby --version 
 
 
 
 
ruby 2.1.5p273 (2014-11-13 revision 48405) [x64-mingw32] 
 
 
 
 
C:\work\puppet>bundle exec puppet --cfacter --help --trace 
 
 
 
 
Error: Could not initialize global default settings: cfacter version 0.2.0 or later is not installed.
 
 
 
 
 
 
 
 
 
 
 
 
 
C:\> wget http://builds.puppetlabs.lan/cfacter/8eb21df4c9f9a18514a9349c8d174f729a6ec0fa/artifacts/windows/cfacter-0.3.0-8-g8eb21df-x64.zip 
 
 
 
 
C:\> mkdir c:\cfacter 
 
 
 
 
   

Jira (PUP-2024) stdlib delete function modifies underlying array while implying it returns a modified copy

2015-02-05 Thread Lauren Rother (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Lauren Rother commented on  PUP-2024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: stdlib delete function modifies underlying array while implying it returns a modified copy  
 
 
 
 
 
 
 
 
 
 
This is captured in https://tickets.puppetlabs.com/browse/DOC-1504. I've linked this ticket to that one for reference and tracking. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper assigned an issue to Josh Cooper 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Assignee:
 
 Josh Cooper 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-177) Client-enabled profiling does not work under Passenger

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-177 
 
 
 
  Client-enabled profiling does not work under Passenger  
 
 
 
 
 
 
 
 
 
 
Ditching passenger. No further testing required. 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-46) Warn but do not fail if find gce facts without json lib

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-46 
 
 
 
  Warn but do not fail if find gce facts without json lib  
 
 
 
 
 
 
 
 
 
 
Covered in spec. 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 

Original Estimate:
 
 0 minutes 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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

Jira (FACT-45) Facter outputs information to stderr irrespective of whether --debug is enabled

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-45 
 
 
 
  Facter outputs information to stderr irrespective of whether --debug is enabled  
 
 
 
 
 
 
 
 
 
 
TestRailed as C63191 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-17) (20989) Facter - Windows - hardware model reporting intel above 6 with the cpu level

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-17 
 
 
 
  (20989) Facter - Windows - hardware model reporting intel above 6 with the cpu level   
 
 
 
 
 
 
 
 
 
 
Covered in spec. No further tests required. 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3970) Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3970 
 
 
 
  Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 {{puppet/util/windows/string.rb}} currently contains some code intended to work around Ruby bugs prior to 2.1This code should now be moot, but requires some validation \ verification.   The last time it was touched, it was refactored so that it only has a single callsite in {{   Current callsites include:https://github.com/puppetlabs/ puppet/ blob/master/lib/puppet/ util/windows/ api_types file .rb }} at   https://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/ process.rbhttps://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/ api_types.rb#L25 https://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/security.rb  Also ensure that no modules are using it before pulling the plug https://github . com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/taskscheduler.rbhttps://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/user.rbhttps://github.com/puppetlabs/puppet/blob/master/spec/unit/util/windows/string_spec.rbMake sure any module usage is monitored as well. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 a

Jira (PUP-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-3679 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 
 
Merged in 57ec6a6 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-25) Implement external facts support on windows

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-25 
 
 
 
  Implement external facts support on windows  
 
 
 
 
 
 
 
 
 
 
TestRailed as C63190 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper assigned an issue to Josh Cooper 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3679 
 
 
 
  Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Assignee:
 
 Josh Cooper 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-21) (#21285) Facter fails to run on non-en_US windows

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-21 
 
 
 
  (#21285) Facter fails to run on non-en_US windows  
 
 
 
 
 
 
 
 
 
 
TestRailed as C63189 
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3970) Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3970 
 
 
 
  Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 {{puppet/util/windows/string.rb}} currently contains some code intended to work around Ruby bugs prior to 2.1This code should now be moot, but requires some validation \ verification.  The last time it was touched, it was refactored so that it only has a single callsite in {{puppet/util/windows/api_types.rb}}  at https://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/windows/api_types.rb#L25Also ensure that no modules are using it before pulling the plug. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3970) Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3970 
 
 
 
  Should Puppet::Util::Windows::String.wide_string be changed based on Ruby 2.1  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Affects Versions:
 

 PUP 4.0.0 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 Windows 
 
 
 

Created:
 

 2015/02/05 3:24 PM 
 
 
 

Fix Versions:
 

 PUP 4.x 
 
 
 

Labels:
 

 windows 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
puppet/util/windows/string.rb currently contains some code intended to work around Ruby bugs prior to 2.1 
This code should now be moot, but requires some validation \ verification. The last time it was touched, it was refactored so that it only has a single callsite in puppet/util/windows/api_types.rb 
   

Jira (PUP-3139) API docs don't mention POST API for catalogs

2015-02-05 Thread Mike Hall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mike Hall commented on  PUP-3139 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: API docs don't mention POST API for catalogs  
 
 
 
 
 
 
 
 
 
 
Nigel Kersten, Eric Sorenson,  
This ticket turned up in a query we're using to sweep for tickets that have a DOCS component on them but have not been assigned to a tech pubs writer. May I go ahead and move this into the DOC project and assign appropriately? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3890) Fix mtime/ctime checksum type

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3890 
 
 
 
  Fix mtime/ctime checksum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

Assignee:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-22) (#21518) Interface facts broken on 2003

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-22 
 
 
 
  (#21518) Interface facts broken on 2003  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-22) (#21518) Interface facts broken on 2003

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall commented on  FACT-22 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: (#21518) Interface facts broken on 2003  
 
 
 
 
 
 
 
 
 
 
Triaged in 

FACT-23
. No additional testing required. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-23) (#20983) Redo interface and ipaddress facts to use indexes rather than localized names

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-23 
 
 
 
  (#20983) Redo interface and ipaddress facts to use indexes rather than localized names  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

QA Contact:
 
 Kurt Wall 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-23) (#20983) Redo interface and ipaddress facts to use indexes rather than localized names

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall commented on  FACT-23 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: (#20983) Redo interface and ipaddress facts to use indexes rather than localized names  
 
 
 
 
 
 
 
 
 
 
Implementation change; covered in spec (spec/unit/interfaces_spec.rb, spec/unit/ipaddress_spec.rb.. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-298) Update FS layout for hiera

2015-02-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall commented on  HI-298 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Update FS layout for hiera  
 
 
 
 
 
 
 
 
 
 
TestRailed as C63188 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1212) Bug in generation of /opt/puppet/libexec/puppetdb/pe-puppetdb.env

2015-02-05 Thread Rob Browning (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Browning updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1212 
 
 
 
  Bug in generation of /opt/puppet/libexec/puppetdb/pe-puppetdb.env  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Browning 
 
 
 

Fix Version/s:
 
 PDB 2.3.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-298) Update FS layout for hiera

2015-02-05 Thread Nicholas Fagerlund (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nicholas Fagerlund updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Hiera /  HI-298 
 
 
 
  Update FS layout for hiera  
 
 
 
 
 
 
 
 
 

Change By:
 
 Nicholas Fagerlund 
 
 
 
 
 
 
 
 
 
 The coming update to the FS layout for our projects requires several changes to default pathing and config files to ensure that the correct directories are used. Off the top of my head this includes default datadir for hiera data.The new layout is described here:https://confluence.puppetlabs.com/display/DEL/Unified+Puppet+Agent+Layout Final decision is listed in this comment: https://tickets.puppetlabs.com/browse/HI-298?focusedCommentId=132439&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-132439 Summary:* Default config file on posix is /etc/puppetlabs/agent/code/hiera.yaml* Default datadir on posix is /etc/puppetlabs/agent/code/hieradata/* Defaults are same when used from Puppet, Ruby library, and cmd line. * Windows defaults do not change.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3679 
 
 
 
  Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Sprint:
 
 Client 2015-02-18 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3679 
 
 
 
  Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Scrum Team:
 
 Release Engineering Client Platform 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3679 
 
 
 
  Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Story Points:
 
 2 1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3809) Separate code (content?) and configuration directories for AIO packaging

2015-02-05 Thread Michael Stahnke (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Stahnke commented on  PUP-3809 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Separate code (content?) and configuration directories for AIO packaging  
 
 
 
 
 
 
 
 
 
 
Merged into AIO setup at https://github.com/puppetlabs/puppet-agent/commit/2d21a3b17ecb58c3f23b1b9482f2cfd095df624b 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3921) Craft 404 error message that includes verbiage about Puppet 4 URL changes

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3921 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Craft 404 error message that includes verbiage about Puppet 4 URL changes  
 
 
 
 
 
 
 
 
 
 
We consider this change to be very low risk, and are setting this ticket to Ready for Review. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3812) Modify file_bucket_file API to use "application/octet-stream" instead of "text/plain" for Content-Type

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3812 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Modify file_bucket_file API to use "application/octet-stream" instead of "text/plain" for Content-Type  
 
 
 
 
 
 
 
 
 
 
The PR shows modifications to spec tests that validate we check to see that we are using binary instead of a string. I want to remove this from the Green Team board and allow Kurt Wall to validate this as he sees fit. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3958) Puppet agent requests do not include the X-Puppet-Version header

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3958 
 
 
 
  Puppet agent requests do not include the X-Puppet-Version header  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3890) Fix mtime/ctime checksum type

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson assigned an issue to Eric Thompson 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3890 
 
 
 
  Fix mtime/ctime checksum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

Assignee:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3958) Puppet agent requests do not include the X-Puppet-Version header

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3958 
 
 
 
  Puppet agent requests do not include the X-Puppet-Version header  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Contact:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3851) Remove v2.0 endpoints

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3851 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Remove v2.0 endpoints  
 
 
 
 
 
 
 
 
 
 
Ruth has already updated acceptance tests to look for v3. QA does not believe it is a good use of time to test that v2 end points are missing. Setting this ticket to Ready for Review so that it can be closed. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3855) auth.conf no longer restricting based on environment

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher assigned an issue to Erik Dasher 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3855 
 
 
 
  auth.conf no longer restricting based on environment  
 
 
 
 
 
 
 
 
 

Change By:
 
 Erik Dasher 
 
 
 

Assignee:
 
 Jeremy Barlow Erik Dasher 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3855) auth.conf no longer restricting based on environment

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3855 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: auth.conf no longer restricting based on environment  
 
 
 
 
 
 
 
 
 
 
We need to look into creating an acceptance test to cover this specific issue. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3679) Drop service dependency on the 'ps' fact

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg assigned an issue to Kylo Ginsberg 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3679 
 
 
 
  Drop service dependency on the 'ps' fact  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Assignee:
 
 Kylo Ginsberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3958) Puppet agent requests do not include the X-Puppet-Version header

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson assigned an issue to Eric Thompson 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3958 
 
 
 
  Puppet agent requests do not include the X-Puppet-Version header  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

Assignee:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3958) Puppet agent requests do not include the X-Puppet-Version header

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3958 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Puppet agent requests do not include the X-Puppet-Version header  
 
 
 
 
 
 
 
 
 
 
verified on rhel7 at SHA: ef1565b 
 
 
 
 
 
 
[root@rkgw5g57s7vysrg ~]# puppet agent -t --http_debug 
 
 
 
 
opening connection to rkgw5g57s7vysrg.delivery.puppetlabs.net:8140... 
 
 
 
 
opened 
 
 
 
 
starting SSL for rkgw5g57s7vysrg.delivery.puppetlabs.net:8140... 
 
 
 
 
SSL established 
 
 
 
 
<- "GET /puppet/v3/node/rkgw5g57s7vysrg.delivery.puppetlabs.net?environment=production&transaction_uuid=e1678301-29d3-4a79-8a34-5c2fbfa8ec83&fail_on_404=true HTTP/1.1\r\nAccept: pson, yaml, binary\r\nX-Puppet-Version: 3.7.4\r\nAccept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3\r\nUser-Agent: Ruby\r\nHost: rkgw5g57s7vysrg.delivery.puppetlabs.net:8140\r\n\r\n" 
 
 
 
 
-> "HTTP/1.1 200 OK \r\n" 
 
 
 
 
-> "X-Puppet-Version: 3.7.4\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Jira (PUP-3526) re-structure CA REST API

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3526 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: re-structure CA REST API  
 
 
 
 
 
 
 
 
 
 
QA is waiting for a stable build to get through CI. We plan to touch test for the next platform release. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Melissa Stone (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Melissa Stone commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
Oops, sorry Ethan Brown. I must have misremembered.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3642) Remove environment name from URL path

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3642 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Remove environment name from URL path  
 
 
 
 
 
 
 
 
 
 
I need to discuss this ticket, and environment handling with a Green Dev before we know how to handle this ticket. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3968) Cache the zypper list-updates output

2015-02-05 Thread Theo Chatzimichos (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Theo Chatzimichos updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3968 
 
 
 
  Cache the zypper list-updates output  
 
 
 
 
 
 
 
 
 

Change By:
 
 Theo Chatzimichos 
 
 
 

Labels:
 
 opensuse package ,  provider sles suse zypper 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (FACT-96) Deprecate 'facter --puppet'

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-96 
 
 
 
  Deprecate 'facter --puppet'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Story Points:
 
 3 1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
I tagged puppet_for_the_win, not puppet-win32-ruby 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3560) Add support for properly signed trusted facts

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher commented on  PUP-3560 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Add support for properly signed trusted facts  
 
 
 
 
 
 
 
 
 
 
We are moving this ticket to Resolved. QA will test SERVER-119.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3958) Puppet agent requests do not include the X-Puppet-Version header

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg commented on  PUP-3958 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Puppet agent requests do not include the X-Puppet-Version header  
 
 
 
 
 
 
 
 
 
 
For Test: see Josh's description. The X-Puppet-Version header should be present in both directions. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown assigned an issue to Ethan Brown 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Assignee:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Scrum Team:
 
 Client Platform Windows 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Sprint:
 
 Client Windows  2015-02- 18 11 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3560) Add support for properly signed trusted facts

2015-02-05 Thread Erik Dasher (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Erik Dasher updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3560 
 
 
 
  Add support for properly signed trusted facts  
 
 
 
 
 
 
 
 
 

Change By:
 
 Erik Dasher 
 
 
 
 
 
 
 
 
 
 Once trusted facts are properly signed as per SERVER-119 we will need to update the Ruby Puppet code to recognize the properly encoded trusted facts, as well as the older improperly encoded trusted facts. It may also be a good idea to  `  update the way Ruby Puppet signs trusted facts, and the Netscape Comment extension to match the RFC-5280 spec. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3968) Cache the zypper list-updates output

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3968 
 
 
 
  Cache the zypper list-updates output  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Scrum Team:
 
 Release Engineering 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
Good point. If Ethan Brown did do the tagging, they have not yet been pushed from what I see. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Melissa Stone (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Melissa Stone commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
I believe Ethan Brown did a lot of the tagging of puppet-win32-ruby already. I definitely agree with the inclusion of arch in the tag, that makes a lot of sense. But I think it would also be helpful to add an additional digit, rather than tagging with the same name of the branch. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3968) Cache the zypper list-updates output

2015-02-05 Thread Theo Chatzimichos (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Theo Chatzimichos updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3968 
 
 
 
  Cache the zypper list-updates output  
 
 
 
 
 
 
 
 
 

Change By:
 
 Theo Chatzimichos 
 
 
 

Labels:
 
 opensuse package, provider sles suse zypper 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3127) LDAP - introduce LDAP-Certificat Directory

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg commented on  PUP-3127 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: LDAP - introduce LDAP-Certificat Directory  
 
 
 
 
 
 
 
 
 
 
Marking this as for 4.x because we're pausing merges of non-critical, non-AIO PRs to puppet/master in the run up to puppet 4.0. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3127) LDAP - introduce LDAP-Certificat Directory

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3127 
 
 
 
  LDAP - introduce LDAP-Certificat Directory  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Fix Version/s:
 
 PUP 4.0.0 
 
 
 

Fix Version/s:
 
 PUP 4.x 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3968) Cache the zypper list-updates output

2015-02-05 Thread Theo Chatzimichos (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Theo Chatzimichos commented on  PUP-3968 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Cache the zypper list-updates output  
 
 
 
 
 
 
 
 
 
 
https://github.com/puppetlabs/puppet/pull/3578 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-333) Hiera command line tool should support looking up facts from PuppetDB

2015-02-05 Thread Eli Young (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eli Young commented on  HI-333 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Hiera command line tool should support looking up facts from PuppetDB  
 
 
 
 
 
 
 
 
 
 

This creates a circular dependency between hiera and puppet - it simply cannot be done this way, the result is not maintainable.
 
There already is a circular dependency between hiera and puppet. The inventory service lookup places a dependency on puppet. 

I also very much question if the tools used to manually check / lookup data in hiera data backends should also be used to query for data in puppet db.
 
Why? If you want to check that hiera will work for a particular node, you need the facts for that node. With the inventory service going away, PuppetDB is the primary way of doing that. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
Matthaus Owens In this case, which I didn't catch before - we need tags in the following sections (hopefully the need for arch on tags will be apparent when you read the last two): 
 

1.9.3-x86 branch (1.9.3-x86)
 

2.0.0-x64 branch (2.0.0-x64)
 

2.1.x-x64 branch (2.1.5-x64)
 

2.1.x-x86 branch (2.1.5-x86)
 
 
cc Melissa Stone Rob Braden 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Matthaus Owens (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Matthaus Owens commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
For ruby, i think we're 56 commits ahead of the 1.9.3-p484.3 tag, which means we're missing a tag in puppet-win32-ruby somewhere /cc Melissa Stone Rob Braden 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Matthaus Owens (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Matthaus Owens commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
For cfacter, in the current world, there is no repo to git describe from (as it is a 7z downloaded from somewhere), so it is probably the describe of PFW. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
Or does it mean that we need a followup ticket for tagging each of those branches? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-1931) mount provider improvement when options property is not specified

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-1931 
 
 
 
  mount provider improvement when options property is not specified  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Fix Version/s:
 
 PUP 4.0.0 
 
 
 

Fix Version/s:
 
 PUP 4.x 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3845) Windows Unified Installer should track internal component versions

2015-02-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3845 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Windows Unified Installer should track internal component versions  
 
 
 
 
 
 
 
 
 
 
Does this mean we should also ref? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-304) Override does not work with interpolation

2015-02-05 Thread Michael Smith (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Smith assigned an issue to Eric Thompson 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Hiera /  HI-304 
 
 
 
  Override does not work with interpolation  
 
 
 
 
 
 
 
 
 

Change By:
 
 Michael Smith 
 
 
 

Assignee:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1218) Metrics: add id to reports table

2015-02-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1218 
 
 
 
  Metrics: add id to reports table  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Affects Version/s:
 
 PDB 2.2.2 
 
 
 

Fix Version/s:
 
 PDB 3.0.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-304) Override does not work with interpolation

2015-02-05 Thread Michael Smith (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Smith commented on  HI-304 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Override does not work with interpolation  
 
 
 
 
 
 
 
 
 
 
The documentation referred to in the ticket is at https://docs.puppetlabs.com/hiera/1/puppet.html#hiera-lookup-functions. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1218) Metrics: add id to reports table

2015-02-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1218 
 
 
 
  Metrics: add id to reports table  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Summary:
 
 metrics Metrics : add id to reports table 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-1143) Ensure tests are passing

2015-02-05 Thread Rob Browning (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Browning assigned an issue to Rob Browning 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-1143 
 
 
 
  Ensure tests are passing  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Browning 
 
 
 

Assignee:
 
 Rob Browning 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-304) Override does not work with interpolation

2015-02-05 Thread Michael Smith (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Smith commented on  HI-304 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Override does not work with interpolation  
 
 
 
 
 
 
 
 
 
 
Here's an example showing the buggy behavior: 
1. Create a hiera.yaml config that specifies  
 
 
 
 
 
 
hiera.yaml 
 
 
 
 
 
 
--- 
 
 
 
 
:backends: 
 
 
 
 
  - yaml 
 
 
 
 
:hierarchy: 
 
 
 
 
  - common 
 
 
 
 
  - alternate 
 
 
 
 
:yaml: 
 
 
 
 
  :datadir: "/tmp/hieradata"
 
 
 
 
 
 
 
2. Create data sources at /tmp/hieradata 
 
 
 
 
 

Jira (PUP-3969) Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper

2015-02-05 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte commented on  PUP-3969 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper  
 
 
 
 
 
 
 
 
 
 
To clarify, the host['user'] and host['group'] values are used by Beaker to connect to the system(s) under test. They are not meant to be used to identify the configured puppet user and group on the system. 
Kevin Imber or Alice Nodelman, please let me know if I have not stated that correctly. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (PDB-137) Document use of PuppetDB with SELinux

2015-02-05 Thread Rob Browning (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Browning updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-137 
 
 
 
  Document use of PuppetDB with SELinux  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Browning 
 
 
 

Fix Version/s:
 
 PDB 2.3.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3969) Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper

2015-02-05 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte commented on  PUP-3969 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper  
 
 
 
 
 
 
 
 
 
 
I have audited the puppet acceptance test suite for this issue and submitted PR 3576 for correcting found instances of it. 
cc: Kevin Imber, Alice Nodelman, Nate Wolfe, William Hopper, Kylo Ginsberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3969) Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper

2015-02-05 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3969 
 
 
 
  Puppet acceptance tests need auditing to derive 'host' and 'group' using the Beaker 'puppet' helper  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 John Duarte 
 
 
 

Created:
 

 2015/02/05 12:23 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 John Duarte 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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://gro

Jira (PUP-3968) Cache the zypper list-updates output

2015-02-05 Thread Theo Chatzimichos (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Theo Chatzimichos created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3968 
 
 
 
  Cache the zypper list-updates output  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Affects Versions:
 

 PUP 3.7.4 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 Performance 
 
 
 

Created:
 

 2015/02/05 12:20 PM 
 
 
 

Environment:
 
 
openSUSE, SLES 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Theo Chatzimichos 
 
 
 
 
 
 
 
 
 
 
The zypper provider calls `zypper list-updates` in order to get a list of the packages that have newer versions. Then it checks if the resource name matches any of the items in the list, and then applies the newer version. The problem with the above though is that it runs list-updates for every single package instance, while it should be run only once, as it provides all the packages that have newer versions available. I'm going to submit a PR for this in github. 
 
 
 
 
 
 
 

Jira (PUP-3936) Injected parameter results in omission of block parameter

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3936 
 
 
 
  Injected parameter results in omission of block parameter  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3936) Injected parameter results in omission of block parameter

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3936 
 
 
 
  Injected parameter results in omission of block parameter  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Contact:
 
 Eric Thompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3936) Injected parameter results in omission of block parameter

2015-02-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3936 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Injected parameter results in omission of block parameter  
 
 
 
 
 
 
 
 
 
 
verified on windows2012r2-r64 at SHA: 698c019 
 
 
 
 
 
 
Administrator@vgr4sd10aqk7bm0 /lib/ruby/site_ruby/2.1.0/puppet/functions 
 
 
 
 
$ cmd /c puppet apply -e 'test(4) |$x| {$x=42}' 
 
 
 
 
passed x (first arg): 4 
 
 
 
 
after block: 4 
 
 
 
 
Notice: Compiled catalog for vgr4sd10aqk7bm0.delivery.puppetlabs.net in environment production in 0.48 seconds 
 
 
 
 
Notice: Applied catalog in 0.02 seconds 
 
 
 
 
  
 
 
 
 
Administrator@vgr4sd10aqk7bm0 /lib/ruby/site_ruby/2.1.0/puppet/functions 
 
 
 
 
$ cat /lib/ruby/site_ruby/2.1.0/puppet/functions/test.rb 
 
 
 
 
Puppet::Functions.create_function('test', Puppet::Functions::InternalFunction) do 
 
 

Jira (HI-304) Override does not work with interpolation

2015-02-05 Thread Michael Smith (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Smith assigned an issue to Michael Smith 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Hiera /  HI-304 
 
 
 
  Override does not work with interpolation  
 
 
 
 
 
 
 
 
 

Change By:
 
 Michael Smith 
 
 
 

Assignee:
 
 Michael Smith 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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 (HI-304) Override does not work with interpolation

2015-02-05 Thread Michael Smith (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michael Smith updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Hiera /  HI-304 
 
 
 
  Override does not work with interpolation  
 
 
 
 
 
 
 
 
 

Change By:
 
 Michael Smith 
 
 
 

Story Points:
 
 1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3618) Include pkgng provider for FreeBSD

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3618 
 
 
 
  Include pkgng provider for FreeBSD  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Fix Version/s:
 
 PUP 4.0.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-1601) functions accepting regexp string should also accept Regexp

2015-02-05 Thread Hailee Kenney (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Hailee Kenney commented on  PUP-1601 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: functions accepting regexp string should also accept Regexp  
 
 
 
 
 
 
 
 
 
 
Merged into master in df6b5b1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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-3821) Use of cfacter on Windows causes error

2015-02-05 Thread Kylo Ginsberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kylo Ginsberg assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-3821 
 
 
 
  Use of cfacter on Windows causes error  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kylo Ginsberg 
 
 
 

Assignee:
 
 Kylo Ginsberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.10#6340-sha1:7ea293a) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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.


  1   2   >