Jira (PUP-2812) Update Windows Installer license file to reference FFI change from LGPL-3 to BSD

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper commented on an issue


















  Re: Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 










Merged in https://github.com/puppetlabs/puppet_for_the_win/commit/155b0d3e69f8a87b1a07761660904dd071391d70












   

 Add Comment

























 Puppet /  PUP-2812



  Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 







 For Puppet 3.7.0, FFI is being updated to 1.9.3 from 1.9.0, and their license changed from LGPL-3 to BSD.   Our license information needs to be updated accordingly.   https://github.com/puppetlabs/puppet_for_the_win/blob/master/conf/windows/stage/misc/LICENSE.rtf#L14















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




 














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


Jira (FACT-626) External facts contained within a given module are deployed to all hosts and not just those which receive the module

2014-07-23 Thread Brad Webb (JIRA)
Title: Message Title










 

 Brad Webb created an issue


















 Facter /  FACT-626



  External facts contained within a given module are deployed to all hosts and not just those which receive the module 










Issue Type:

  Bug




Affects Versions:


 2.1.0




Assignee:

 Eric Sorenson




Created:


 22/Jul/14 11:39 PM




Environment:


RHEL 6.x, Puppet 3.6.2, Facter 2.1.0.




Priority:

  Normal




Reporter:

 Brad Webb










Expected behavior: When a custom external fact generation script is added to a module, the script is distributed only to hosts which have had the module applied.
Observed behavior: When a custom external fact generation script is added to a module, the script is distributed to all Puppet clients (into the local directory /var/lib/puppet/facts.d) and not just to those hosts which have had the module applied.
To reproduce:
1. Add 'myfactfinder.pl' into the module 'mymodule' (as [modulepath]/mymodule/facts.d/myfactfinder.pl). 2. Apply 'mymodule' to a subset of Puppet clients. 3. Run 'puppet agent -t' on a host which did not have 'mymodule' applied. 4. The file '/var/lib/puppet/facts.d/myfactfinder.pl' now exists on the host in step (3) and it is executed by Facter.







  

Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Robin Bowes (JIRA)
Title: Message Title










 

 Robin Bowes created an issue


















 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 










Issue Type:

  Bug




Assignee:

 Eric Sorenson




Created:


 23/Jul/14 6:26 AM




Environment:


RHEL 6, PE 3.1.3




Priority:

  Normal




Reporter:

 Robin Bowes










Boolean facts are not printed with facter -p if the fact value is false.
Example (using a custom fact):


[root@cxdrun01 ~]# facter -p | grep is_cde
is_cde = true
[root@cxdrun01 ~]# facter -p is_cde
true
# fiddle the is_cde fact to be false here
[root@cxdrun01 ~]# facter -p | grep is_cde
is_cde = false
[root@cxdrun01 ~]# facter -p is_cde
(no output printed here)















   

 Add Comment







   

Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Robin Bowes (JIRA)
Title: Message Title










 

 Robin Bowes commented on an issue


















  Re: Boolean facts not printed with facter -p if fact value is false 










It seems that this is caused when the plugin code returns a false value instead of a string value false.
This is the code I am now using, and which works:


Facter.add('is_cde') do
  setcode do
if Facter.value(:role).match(/cde/)
  true
else
  false
end
  end
end



I should point out that I copied the code that didn't work correctly from pe_version.rb in stdlib so that code should probably be changed too.












   

 Add Comment

























 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 







 Boolean facts are not printed with facter -p if the fact value is false.   Example (using a custom fact):  {noformat}  [root@cxdrun01 ~]# facter -p | grep is_cde  is_cde = true  [root@cxdrun01 ~]# facter -p is_cde  true  # fiddle the is_cde fact to be false here  [root@cxdrun01 ~]# facter -p | grep is_cde  is_cde = false  [root@cxdrun01 ~]# facter -p i...















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




 
 

Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Adrien Thebo (JIRA)
Title: Message Title










 

 Adrien Thebo assigned an issue to Adrien Thebo


















 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 










Change By:

 Adrien Thebo




Assignee:

 AdrienThebo












   

 Add Comment






















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




 














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


Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Adrien Thebo (JIRA)
Title: Message Title










 

 Adrien Thebo updated an issue


















 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 










Change By:

 Adrien Thebo




Affects Version/s:

 1.7.6




Affects Version/s:

 2.1.0












   

 Add Comment






















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




 














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


Jira (PDB-709) /facts endpoint changes for structured facts

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber assigned an issue to Kenneth Barber


















 PuppetDB /  PDB-709



  /facts endpoint changes for structured facts 










Change By:

 Kenneth Barber




Assignee:

 KennethBarber












   

 Add Comment






















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




 














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


Jira (PDB-713) Modify anonymization tool to support structured facts

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber updated an issue


















 PuppetDB /  PDB-713



  Modify anonymization tool to support structured facts 










Change By:

 Kenneth Barber




Sprint:

 20140730 20140716 to 20140813 20140730












   

 Add Comment






















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




 














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


Jira (PDB-712) Modify export and import tool to support structured facts

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber updated an issue


















 PuppetDB /  PDB-712



  Modify export and import tool to support structured facts 










Change By:

 Kenneth Barber




Sprint:

 20140730 20140716 to 20140813 20140730












   

 Add Comment






















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




 














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


Jira (PDB-713) Modify anonymization tool to support structured facts

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber assigned an issue to Kenneth Barber


















 PuppetDB /  PDB-713



  Modify anonymization tool to support structured facts 










Change By:

 Kenneth Barber




Assignee:

 KennethBarber












   

 Add Comment






















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




 














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


Jira (PDB-713) Modify anonymization tool to support structured facts

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber assigned an issue to Wyatt Alt


















 PuppetDB /  PDB-713



  Modify anonymization tool to support structured facts 










Change By:

 Kenneth Barber




Assignee:

 KennethBarber WyattAlt












   

 Add Comment






















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




 














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


Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Adrien Thebo (JIRA)
Title: Message Title










 

 Adrien Thebo updated an issue


















 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 










Change By:

 Adrien Thebo




Component/s:

 Community












   

 Add Comment






















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




 














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


Jira (FACT-627) Boolean facts not printed with facter -p if fact value is false

2014-07-23 Thread Adrien Thebo (JIRA)
Title: Message Title










 

 Adrien Thebo commented on an issue


















  Re: Boolean facts not printed with facter -p if fact value is false 










I've added the community component so that this is tracked on the community board and subsequently sheparded through CI and FR.












   

 Add Comment

























 Facter /  FACT-627



  Boolean facts not printed with facter -p if fact value is false 







 Boolean facts are not printed with facter -p if the fact value is false.   Example (using a custom fact):  {noformat}  [root@cxdrun01 ~]# facter -p | grep is_cde  is_cde = true  [root@cxdrun01 ~]# facter -p is_cde  true  # fiddle the is_cde fact to be false here  [root@cxdrun01 ~]# facter -p | grep is_cde  is_cde = false  [root@cxdrun01 ~]# facter -p i...















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




 














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

Jira (PDB-550) Support for loading PEM files directly for SSL with the postgresdb instead of just keystores

2014-07-23 Thread Kenneth Barber (JIRA)
Title: Message Title










 

 Kenneth Barber updated an issue


















 PuppetDB /  PDB-550



  Support for loading PEM files directly for SSL with the postgresdb instead of just keystores 










Change By:

 Kenneth Barber




Sprint:

 20140716to20140730












   

 Add Comment






















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




 














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


Jira (PUP-2871) Add :install_options and :uninstall_options to the pacman provider

2014-07-23 Thread Adrien Thebo (JIRA)
Title: Message Title










 

 Adrien Thebo updated an issue


















 Puppet /  PUP-2871



  Add :install_options and :uninstall_options to the pacman provider 










Change By:

 Adrien Thebo




Component/s:

 Community












   

 Add Comment






















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




 














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


Jira (PUP-2812) Update Windows Installer license file to reference FFI change from LGPL-3 to BSD

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-2812



  Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 










Change By:

 Josh Cooper




Flagged:

 Impediment












   

 Add Comment






















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




 














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


Jira (PUP-2812) Update Windows Installer license file to reference FFI change from LGPL-3 to BSD

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper commented on an issue


















  Re: Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 










To verify, run the windows MSI, verify that the license agreement page specifies FFI is BSD licensed, and that the LGPL license text is removed from the bottom of the page












   

 Add Comment

























 Puppet /  PUP-2812



  Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 







 For Puppet 3.7.0, FFI is being updated to 1.9.3 from 1.9.0, and their license changed from LGPL-3 to BSD.   Our license information needs to be updated accordingly.   https://github.com/puppetlabs/puppet_for_the_win/blob/master/conf/windows/stage/misc/LICENSE.rtf#L14















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




 














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


Jira (PUP-2952) Puppet should only log facts in debug mode

2014-07-23 Thread Joshua Partlow (JIRA)
Title: Message Title










 

 Joshua Partlow updated an issue


















 Puppet /  PUP-2952



  Puppet should only log facts in debug mode 










Change By:

 Joshua Partlow




Component/s:

 Community












   

 Add Comment






















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




 














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


Jira (PUP-2952) Puppet should only log facts in debug mode

2014-07-23 Thread Joshua Partlow (JIRA)
Title: Message Title










 

 Joshua Partlow updated an issue


















 Puppet /  PUP-2952



  Puppet should only log facts in debug mode 










Change By:

 Joshua Partlow




Assignee:

 JoshuaPartlow WilliamVanHevelingen












   

 Add Comment






















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




 














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


Jira (PUP-2952) Puppet should only log facts in debug mode

2014-07-23 Thread Joshua Partlow (JIRA)
Title: Message Title










 

 Joshua Partlow assigned an issue to Joshua Partlow


















 Puppet /  PUP-2952



  Puppet should only log facts in debug mode 










Change By:

 Joshua Partlow




Assignee:

 JoshuaPartlow












   

 Add Comment






















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg assigned an issue to Kylo Ginsberg


















 Facter /  FACT-613



  Create structured processor fact 










Change By:

 Kylo Ginsberg




Assignee:

 KyloGinsberg












   

 Add Comment






















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg commented on an issue


















  Re: Create structured processor fact 










Failed CI due to a minor schema mixup. I'll take a look.












   

 Add Comment

























 Facter /  FACT-613



  Create structured processor fact 







 Currently, there are five processor based facts: Processor, ProcessorCount, PhysicalProcessorCount, ProcessorSpeed and dynamic ProcessorX facts, which are resolved depending on operating system. These are a good candidate for merging into a single structured fact.   The output for this fact could appear as follows (simulated for a system that resolves ea...















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread William Hopper (JIRA)
Title: Message Title










 

 William Hopper commented on an issue


















  Re: Create structured processor fact 










Whoops, sorry about that!












   

 Add Comment

























 Facter /  FACT-613



  Create structured processor fact 







 Currently, there are five processor based facts: Processor, ProcessorCount, PhysicalProcessorCount, ProcessorSpeed and dynamic ProcessorX facts, which are resolved depending on operating system. These are a good candidate for merging into a single structured fact.   The output for this fact could appear as follows (simulated for a system that resolves ea...















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




 














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


Jira (PUP-2757) Apply parses everything twice

2014-07-23 Thread Charlie Sharpsteen (JIRA)
Title: Message Title










 

 Charlie Sharpsteen updated an issue


















 Puppet /  PUP-2757



  Apply parses everything twice 










Change By:

 Charlie Sharpsteen




Assignee:

 CharlieSharpsteen












   

 Add Comment






















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




 














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


Jira (PUP-2757) Apply parses everything twice

2014-07-23 Thread Charlie Sharpsteen (JIRA)
Title: Message Title










 

 Charlie Sharpsteen commented on an issue


















  Re: Apply parses everything twice 










Tested by applying a tracing patch to track the invocations of perform_initial_import:


trace_env_import.patch



diff --git a/bin/puppet b/bin/puppet
index c80174f..933e034 100755
--- a/bin/puppet
+++ b/bin/puppet
@@ -4,5 +4,21 @@
 # This is primarily for 1.8.7 since 1.9.2+ doesn't put '.' on the load path
 $LOAD_PATH.delete '.'
 
+set_trace_func proc {|event, file, line, id, binding, classname|
+  # Sometimes we get a nil binding for strange reasons...
+  next if binding.nil?
+  # Only process method calls
+  next unless event == 'call'
+  # Only process calls to load or require.
+  next unless [:perform_initial_import].include? id
+
+  env_name = binding.eval('self.name')
+
+  # Print tracing information.
+  puts debug #{event}: #{id} #{file}:#{line}
+  puts \t Environment name: #{env_name}
+  caller.each{|l| puts \t#{l}}
+}
+
 require 'puppet/util/command_line'
 Puppet::Util::CommandLine.new.execute



The initial behavior of puppet apply contained two imports during the compile phase:


Puppet Commit 7e69be3


[root@poss-head-centos ~]# puppet apply -e 'notify{hello, world!:}'

debug call: perform_initial_import /puppetlabs/puppet/lib/puppet/node/environment.rb:518
 Environment name: production
/puppetlabs/puppet/lib/puppet/node/environment.rb:518:in `perform_initial_import'
/puppetlabs/puppet/lib/puppet/node/environment.rb:255:in `known_resource_types'
/puppetlabs/puppet/lib/puppet/resource/type_collection_helper.rb:5:in `known_resource_types'
/puppetlabs/puppet/lib/puppet/parser/compiler.rb:543:in `block in initvars'
/puppetlabs/puppet/lib/puppet/context.rb:64:in `override'
/puppetlabs/puppet/lib/puppet.rb:237:in `override'
/puppetlabs/puppet/lib/puppet/parser/compiler.rb:541:in `initvars'
/puppetlabs/puppet/lib/puppet/parser/compiler.rb:239:in `initialize'
/puppetlabs/puppet/lib/puppet/parser/compiler.rb:23:in `new'
/puppetlabs/puppet/lib/puppet/parser/compiler.rb:23:in `compile'
/puppetlabs/puppet/lib/puppet/indirector/catalog/compiler.rb:95:in `block (2 levels) in compile'
/puppetlabs/puppet/lib/puppet/util/profiler/around_profiler.rb:58:in `profile'
/puppetlabs/puppet/lib/puppet/util/profiler.rb:51:in `profile'
/puppetlabs/puppet/lib/puppet/indirector/catalog/compiler.rb:93:in `block in compile'
/puppetlabs/puppet/lib/puppet/util.rb:161:in `block in benchmark'
/opt/rh/ruby193/root/usr/share/ruby/benchmark.rb:295:in `realtime'
/puppetlabs/puppet/lib/puppet/util.rb:160:in `benchmark'
/puppetlabs/puppet/lib/puppet/indirector/catalog/compiler.rb:92:in `compile'
/puppetlabs/puppet/lib/puppet/indirector/catalog/compiler.rb:52:in `find'
/puppetlabs/puppet/lib/puppet/indirector/indirection.rb:201:in `find'
/puppetlabs/puppet/lib/puppet/application/apply.rb:215:in `block in main'
/puppetlabs/puppet/lib/puppet/context.rb:64:in `override'
/puppetlabs/puppet/lib/puppet.rb:237:in `override'
/puppetlabs/puppet/lib/puppet/application/apply.rb:191:in `main'

Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg assigned an issue to Kylo Ginsberg


















 Facter /  FACT-613



  Create structured processor fact 










Change By:

 Kylo Ginsberg




Assignee:

 KyloGinsberg












   

 Add Comment






















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg commented on an issue


















  Re: Create structured processor fact 










Np. And windows can't require cfpropertylist, so one more minor fixup.












   

 Add Comment

























 Facter /  FACT-613



  Create structured processor fact 







 Currently, there are five processor based facts: Processor, ProcessorCount, PhysicalProcessorCount, ProcessorSpeed and dynamic ProcessorX facts, which are resolved depending on operating system. These are a good candidate for merging into a single structured fact.   The output for this fact could appear as follows (simulated for a system that resolves ea...















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




 














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


Jira (PUP-2757) Apply parses everything twice

2014-07-23 Thread Joshua Partlow (JIRA)
Title: Message Title










 

 Joshua Partlow assigned an issue to Joshua Partlow


















 Puppet /  PUP-2757



  Apply parses everything twice 










Change By:

 Joshua Partlow




Assignee:

 JoshuaPartlow












   

 Add Comment






















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




 














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


Jira (PUP-390) Modify build process to generate x86 and x64 versions of ruby

2014-07-23 Thread Ethan Brown (JIRA)
Title: Message Title










 

 Ethan Brown commented on an issue


















  Re: Modify build process to generate x86 and x64 versions of ruby 










The PR is mostly ready to go... still performing verification before considering this merge ready.












   

 Add Comment

























 Puppet /  PUP-390



  Modify build process to generate x86 and x64 versions of ruby 







 The [build process|https://github.com/puppetlabs/puppet_for_the_win] needs to be able to package x86 and x64 versions of ruby with the appropriate set of gems (some containing native code), which is then packaged up into two puppet MSI installers. 















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




 














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


Jira (PUP-2878) puppet-kick.8.gz conflict upgrading from 2.7.26 to 3.6.2

2014-07-23 Thread Kurt Wall (JIRA)
Title: Message Title










 

 Kurt Wall assigned an issue to Kurt Wall


















 Puppet /  PUP-2878



  puppet-kick.8.gz conflict upgrading from 2.7.26 to 3.6.2 










Change By:

 Kurt Wall




Assignee:

 KurtWall












   

 Add Comment






















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




 














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


Jira (PUP-2812) Update Windows Installer license file to reference FFI change from LGPL-3 to BSD

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper commented on an issue


















  Re: Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 










Verified: ffi - BSD License and no LGPL license












   

 Add Comment

























 Puppet /  PUP-2812



  Update Windows Installer license file to reference FFI change from LGPL-3 to BSD 







 For Puppet 3.7.0, FFI is being updated to 1.9.3 from 1.9.0, and their license changed from LGPL-3 to BSD.   Our license information needs to be updated accordingly.   https://github.com/puppetlabs/puppet_for_the_win/blob/master/conf/windows/stage/misc/LICENSE.rtf#L14















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




 














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


Jira (PUP-2873) puppet master --compile right now unconditionally spews logs to standard output

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker updated an issue


















 Puppet /  PUP-2873



  puppet master --compile right now unconditionally spews logs to standard output 










Change By:

 Andy Parker




Component/s:

 Server












   

 Add Comment






















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




 














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


Jira (PUP-1806) Varargs support for the new function API

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-1806



  Varargs support for the new function API 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2906) Reimplement Collection without 3x AST

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-2906



  Reimplement Collection without 3x AST 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-494) Make future parser/evaluator have acceptable performance

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-494



  Make future parser/evaluator have acceptable performance 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2411) Remove 1.8.7 multibyte string support in Lexer2

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-2411



  Remove 1.8.7 multibyte string support in Lexer2  










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2412) Remove 1.8.7 function API support

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-2412



  Remove 1.8.7 function API support 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2904) Make string/symbol use consistent i new function API

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-2904



  Make string/symbol use consistent i new function API 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (FACT-628) facter returns incorrect value for `facter virtual` for Ldoms due to how the fact is added in Solaris.

2014-07-23 Thread Jay Wallace (JIRA)
Title: Message Title










 

 Jay Wallace created an issue


















 Facter /  FACT-628



  facter returns incorrect value for `facter virtual` for Ldoms due to how the fact is added in Solaris. 










Issue Type:

  Bug




Affects Versions:


 1.7.5




Assignee:

 Eric Sorenson




Components:


 PE




Created:


 23/Jul/14 2:14 PM




Labels:


 customer




Priority:

  Normal




Reporter:

 Jay Wallace










Whenever you execute facter with no arguments it loads both ldom.rb and virtual.rb, and virtual fact value is set properly. However, in the scenario where you execute facter virtual it loads only virtual.rb and given this fact is not explicitly set for Ldoms it defaults to setting the value as physical.
Below is an excerpt from ldom.rb where the virtual fact is added for Solaris:



Facter.add(virtual) do
  confine :ldom_domainrole_control = 'false'
  has_weight 10
  setcode do
Facter.value(:ldom_domainrole_impl)
  end
end


 

Jira (PUP-909) Speed up type inference

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-909



  Speed up type inference 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2862) Validate that default value expression for param does not define variable

2014-07-23 Thread Kenn Hussey (JIRA)
Title: Message Title










 

 Kenn Hussey updated an issue


















 Puppet /  PUP-2862



  Validate that default value _expression_ for param does not define variable 










Change By:

 Kenn Hussey




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-2427) Pluginsync will download every file every time if digest_algorithms do not agree

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2427



  Pluginsync will download every file every time if digest_algorithms do not agree 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-7-9












   

 Add Comment






















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




 














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


Jira (PUP-2423) Filebucket server should warn, not fail, if checksum type is not supported

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2423



  Filebucket server should warn, not fail, if checksum type is not supported 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-11to2014-6-18 ,Week2014-7-9












   

 Add Comment






















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




 














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


Jira (PUP-2913) Update RGen Gem in Puppet-Win32-Ruby libraries

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-2913



  Update RGen Gem in Puppet-Win32-Ruby libraries 










Change By:

 Josh Cooper




Sprint:

 Week2014-7-23












   

 Add Comment






















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




 














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


Jira (FACT-603) Facter acceptance should use our github mirror

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Facter /  FACT-603



  Facter acceptance should use our github mirror 










Change By:

 Josh Cooper




Sprint:

 Week2014-7-23












   

 Add Comment






















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




 














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


Jira (FACT-603) Facter acceptance should use our github mirror

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Facter /  FACT-603



  Facter acceptance should use our github mirror 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-7-9












   

 Add Comment






















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




 














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


Jira (FACT-603) Facter acceptance should use our github mirror

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Facter /  FACT-603



  Facter acceptance should use our github mirror 










Change By:

 Josh Cooper




Assignee:

 RogerIgnazio












   

 Add Comment






















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




 














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


Jira (PUP-2281) Publish Azure VM update that use external FQDN for MCO / simplified install

2014-07-23 Thread Ethan Brown (JIRA)
Title: Message Title










 

 Ethan Brown updated an issue


















 Puppet /  PUP-2281



  Publish Azure VM update that use external FQDN for MCO / simplified install 










Change By:

 Ethan Brown




Sprint:

 Week2014-4-23to2014-4-30,Week2014-4-16to2014-4-23,Week2014-4-30to2014-5-7,Week2014-5-7to2014-5-14 ,Week2014-7-23












   

 Add Comment






















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




 














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


Jira (PUP-1044) FileBucket should not keep files in memory

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-1044



  FileBucket should not keep files in memory 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014- 7 08 - 23 06












   

 Add Comment






















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




 














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


Jira (PUP-1471) Puppet Agent windows services accidentally comes of out Paused state

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-1471



  Puppet Agent windows services accidentally comes of out Paused state 










Change By:

 Josh Cooper




Story Points:

 1












   

 Add Comment






















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




 














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


Jira (PUP-1471) Puppet Agent windows services accidentally comes of out Paused state

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-1471



  Puppet Agent windows services accidentally comes of out Paused state 










Change By:

 Josh Cooper




Sprint:

 Week2014-7-23












   

 Add Comment






















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




 














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


Jira (PUP-1471) Puppet Agent windows services accidentally comes of out Paused state

2014-07-23 Thread Rob Reynolds (JIRA)
Title: Message Title










 

 Rob Reynolds updated an issue


















 Puppet /  PUP-1471



  Puppet Agent windows services accidentally comes of out Paused state 










Change By:

 Rob Reynolds




Component/s:

 Client












   

 Add Comment






















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




 














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


Jira (PUP-2873) puppet master --compile right now unconditionally spews logs to standard output

2014-07-23 Thread Rob Reynolds (JIRA)
Title: Message Title










 

 Rob Reynolds updated an issue


















 Puppet /  PUP-2873



  puppet master --compile right now unconditionally spews logs to standard output 










Change By:

 Rob Reynolds




Component/s:

 Server












   

 Add Comment






















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




 














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


Jira (PUP-2873) puppet master --compile right now unconditionally spews logs to standard output

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-2873



  puppet master --compile right now unconditionally spews logs to standard output 










Change By:

 Josh Cooper




Story Points:

 1












   

 Add Comment






















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




 














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


Jira (PUP-2918) puppet module build gives unhelpful error message

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-2918



  puppet module build gives unhelpful error message 










Change By:

 Josh Cooper




Fix Version/s:

 3.7.0












   

 Add Comment






















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




 














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


Jira (PUP-417) Add acceptance cells which test with passenger instead of webrick.

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-417



  Add acceptance cells which test with passenger instead of webrick. 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-3-05to2014-3-12,Week2014-3-12to2014-3-19,Week2014-6-11to2014-6-18,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Facter /  FACT-613



  Create structured processor fact 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2882) PMT upgrade command returns an error when trying to upgrade a module with only one release

2014-07-23 Thread Anderson Mills (JIRA)
Title: Message Title










 

 Anderson Mills assigned an issue to Brandon High


















 Puppet /  PUP-2882



  PMT upgrade command returns an error when trying to upgrade a module with only one release 










Change By:

 Anderson Mills




Assignee:

 BrandonHigh












   

 Add Comment






















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




 














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


Jira (PUP-2078) Puppet module install --force does not re-install dependencies

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2078



  Puppet module install --force does not re-install dependencies 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-391) Validate FFI'ed native windows code against Ruby 2 x64

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-391



  Validate FFI'ed native windows code against Ruby 2 x64 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2757) Apply parses everything twice

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2757



  Apply parses everything twice 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-501) Test Evaluation of ResourceExpressions

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-501



  Test Evaluation of ResourceExpressions 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2860) Optimize startup of puppet apply (future parser)

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2860



  Optimize startup of puppet apply (future parser) 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-744) Pool HTTPS connections

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-744



  Pool HTTPS connections 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2745) Puppet 3.6.1 issue with Forge API v3

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2745



  Puppet 3.6.1 issue with Forge API v3 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-390) Modify build process to generate x86 and x64 versions of ruby

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-390



  Modify build process to generate x86 and x64 versions of ruby 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-1186) puppet module tool on windows will (sometimes) create a PaxHeader directory

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-1186



  puppet module tool on windows will (sometimes) create a PaxHeader directory 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2388) Run Puppet acceptance against ruby 2.0 x64

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2388



  Run Puppet acceptance against ruby 2.0 x64 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-511) Specify Resource Expression Evaluation

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-511



  Specify Resource _expression_ Evaluation 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2885) Periodic timeouts when reading from master

2014-07-23 Thread Kurt Wall (JIRA)
Title: Message Title










 

 Kurt Wall assigned an issue to Unassigned


















 Puppet /  PUP-2885



  Periodic timeouts when reading from master 










Change By:

 Kurt Wall




Assignee:

 KurtWall












   

 Add Comment






















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




 














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


Jira (PUP-2701) Add acceptance tests for PMT build metadata.json support

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2701



  Add acceptance tests for PMT build metadata.json support 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (FACT-614) Create structured operating system fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Facter /  FACT-614



  Create structured operating system fact 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2776) Adjust master acceptance/tests/environment/{static,dynamic,directory}.rb to run in PE

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2776



  Adjust master acceptance/tests/environment/{static,dynamic,directory}.rb to run in PE 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2752) Module tool fails to install new modules if some existing modules version is not Major.Minor.Patch format

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2752



  Module tool fails to install new modules if some existing modules version is not Major.Minor.Patch format 










Change By:

 Kylo Ginsberg




Sprint:

 Week2014-6-25to2014-7-9,2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2882) PMT upgrade command returns an error when trying to upgrade a module with only one release

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2882



  PMT upgrade command returns an error when trying to upgrade a module with only one release 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2944) yum provider should use osfamily instead of operatingsystem fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2944



  yum provider should use osfamily instead of operatingsystem fact 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2898) Long form Resource Type reference fools future parser this is an override

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2898



  Long form Resource Type reference fools future parser this is an override 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23 ,2014-08-06












   

 Add Comment






















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




 














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


Jira (PUP-2963) modulepath not being respected in multi-path setups

2014-07-23 Thread Daniel Henninger (JIRA)
Title: Message Title










 

 Daniel Henninger created an issue


















 Puppet /  PUP-2963



  modulepath not being respected in multi-path setups 










Issue Type:

  Bug




Affects Versions:


 3.6.2




Assignee:

 Andy Parker




Components:


 Server




Created:


 23/Jul/14 2:40 PM




Environment:


Red Hat Enterprise Linux 6, and admittedly complex environment (not in the puppet context)




Priority:

  Normal




Reporter:

 Daniel Henninger










Hi there! We have a Puppet set up where we have three paths, in the following order, in one's module path: 1. Your environment 2. Root environment (The core environment) 3. Global modules (stuff that's downloaded from puppet forge)
In this setup, the Root environment makes up everything that is the base of our Linux installs. So for example it sets up SSH, Kerberos, OpenAFS, LDAP, etc all based off standards across our university.
Individual colleges or groups have their own environments. (we tend to refer to them as puppet repos) We suggest that they call their own modules something with a common prefix so as not to conflict with modules in root or global modules.
   

Jira (PUP-2804) Remove deprecation warnings introduced into Windows code during FFI

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Puppet /  PUP-2804



  Remove deprecation warnings introduced into Windows code during FFI 










Change By:

 Josh Cooper




Sprint:

 2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-2964) Ruby 2.0 x64 fails on win2003

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper moved an issue


















 Puppet /  PUP-2964



  Ruby 2.0 x64 fails on win2003 










Change By:

 Josh Cooper




Fix Version/s:

 2.1.1




Fix Version/s:

 3.7.0




Key:

 FACT PUP - 625 2964




Project:

 Facter Puppet












   

 Add Comment






















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




 














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


Jira (FACT-603) Facter acceptance should use our github mirror

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Facter /  FACT-603



  Facter acceptance should use our github mirror 










Change By:

 Josh Cooper




Flagged:

 Impediment












   

 Add Comment






















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




 














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


Jira (FACT-603) Facter acceptance should use our github mirror

2014-07-23 Thread Josh Cooper (JIRA)
Title: Message Title










 

 Josh Cooper updated an issue


















 Facter /  FACT-603



  Facter acceptance should use our github mirror 










Change By:

 Josh Cooper




Sprint:

 2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-2614) Deprecate default source_permissions :use on all platforms

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2614



  Deprecate default source_permissions :use on all platforms 










Change By:

 Kylo Ginsberg




Sprint:

 2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-1874) Deprecate the inventory service on master

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-1874



  Deprecate the inventory service on master 










Change By:

 Kylo Ginsberg




Sprint:

 2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-2423) Filebucket server should warn, not fail, if checksum type is not supported

2014-07-23 Thread Eric Sorenson (JIRA)
Title: Message Title










 

 Eric Sorenson commented on an issue


















  Re: Filebucket server should warn, not fail, if checksum type is not supported 










I'm going to suggest these be closed as wontfix – it looks like there's a crazy amount of complexity to retrofit this kind of negotiation onto a network protocol that wasn't built for it. 












   

 Add Comment

























 Puppet /  PUP-2423



  Filebucket server should warn, not fail, if checksum type is not supported 







 PUP-1840 allows users to specify the digest algorithm to use for file bucketing and the file checksum parameter. However, if you reconfigure the master to use SHA256:   {noformat}  [main]  digest_algorithm=sha256  {noformat}   Then it will reject file bucket requests from agents that haven't switched over:   {noformat}  # puppet agent -td  ...  Error: ...















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




 














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

Jira (FACT-614) Create structured operating system fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Facter /  FACT-614



  Create structured operating system fact 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23,2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-1874) Deprecate the inventory service on master

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker updated an issue


















 Puppet /  PUP-1874



  Deprecate the inventory service on master 










Change By:

 Andy Parker




Story Points:

 3 1












   

 Add Comment






















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




 














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


Jira (FACT-613) Create structured processor fact

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Facter /  FACT-613



  Create structured processor fact 










Change By:

 Kylo Ginsberg




Sprint:

 2014-07-23,2014-08- 06 20












   

 Add Comment






















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




 














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


Jira (PUP-2963) modulepath not being respected in multi-path setups

2014-07-23 Thread Daniel Henninger (JIRA)
Title: Message Title










 

 Daniel Henninger commented on an issue


















  Re: modulepath not being respected in multi-path setups 










Almost forgot to add – of the other modules in the root repo, there is a mesh of includes and inheriting. My suspicion is that while include ncsufirewall from the root repo would get my copy because it's first in the path, inherits ncsufirewall from something in the root repo would get the copy of the module that is next to it for lack of a better term.
If I can come up with a very quick and dirty way to demonstrate the behavior I will submit it.












   

 Add Comment

























 Puppet /  PUP-2963



  modulepath not being respected in multi-path setups 







 Hi there! We have a Puppet set up where we have three paths, in the following order, in one's module path:  1. Your environment  2. Root environment (The core environment)  3. Global modules (stuff that's downloaded from puppet forge)   In this setup, the Root environment makes up everything that is the base of our Linux installs. So for example it s...















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




 














-- 
You received this message because you are subscribed to the 

Jira (PUP-586) Deprecate Instrumentation system

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker updated an issue


















 Puppet /  PUP-586



  Deprecate Instrumentation system 










Change By:

 Andy Parker




Component/s:

 DOCS












   

 Add Comment






















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




 














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


Jira (PUP-796) Deprecate couchdb facts terminus and associated settings

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg commented on an issue


















  Re: Deprecate couchdb facts terminus and associated settings 










This will be deprecated in docs, but won't produce a deprecation warning.












   

 Add Comment

























 Puppet /  PUP-796



  Deprecate couchdb facts terminus and associated settings 







 Puppet core has a terminus for facts to store data in couchdb. With the advent of puppetdb this should not be needed, at least not in the core of puppet.















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




 














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


Jira (PUP-796) Deprecate couchdb facts terminus and associated settings

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-796



  Deprecate couchdb facts terminus and associated settings 










Change By:

 Kylo Ginsberg




Component/s:

 DOCS












   

 Add Comment






















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




 














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


Jira (PUP-2965) Remove Puppet::Plugins

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker created an issue


















 Puppet /  PUP-2965



  Remove Puppet::Plugins 










Issue Type:

  Task




Assignee:


 Unassigned




Created:


 23/Jul/14 3:05 PM




Fix Versions:


 4.0.0




Priority:

  Normal




Reporter:

 Andy Parker










The Puppet::Plugins system is deprecated and needs to be removed at a major version boundary.












   

 Add Comment






















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




 

Jira (PUP-2424) Deprecate Puppet::Plugins

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker assigned an issue to Unassigned


















 Puppet /  PUP-2424



  Deprecate Puppet::Plugins 










Change By:

 Andy Parker




Assignee:

 AndyParker












   

 Add Comment






















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




 














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


Jira (PUP-2768) Duplicate relevant existing benchmarks for future parser/evaluator configuration

2014-07-23 Thread Andy Parker (JIRA)
Title: Message Title










 

 Andy Parker assigned an issue to Unassigned


















 Puppet /  PUP-2768



  Duplicate relevant existing benchmarks for future parser/evaluator configuration 










Change By:

 Andy Parker




Assignee:

 AndyParker












   

 Add Comment






















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




 














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


Jira (PUP-2966) Change stringify_facts default to false

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg created an issue


















 Puppet /  PUP-2966



  Change stringify_facts default to false 










Issue Type:

  Improvement




Assignee:


 Unassigned




Created:


 23/Jul/14 3:07 PM




Priority:

  Normal




Reporter:

 Kylo Ginsberg












   

 Add Comment






















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




 














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


Jira (PUP-406) Deprecate stringify_fact = true

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg commented on an issue


















  Re: Deprecate stringify_fact = true 










This will be deprecated in docs, but won't produce a deprecation warning.












   

 Add Comment

























 Puppet /  PUP-406



  Deprecate stringify_fact = true 







 Erik Dalen's patch that allows turning off the stringification of facts by puppet opens the door to structured facts. In 3.x that settings was to still stringify by default, in 4.0.0 it needs to be changed to *not* stringify by default and to issue a deprecation warning when it is set to stringify.  The reason for the deprecation and not complete removal ...















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




 














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


Jira (PUP-2873) puppet master --compile right now unconditionally spews logs to standard output

2014-07-23 Thread Kurt Wall (JIRA)
Title: Message Title










 

 Kurt Wall assigned an issue to Kurt Wall


















 Puppet /  PUP-2873



  puppet master --compile right now unconditionally spews logs to standard output 










Change By:

 Kurt Wall




Assignee:

 KurtWall












   

 Add Comment






















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




 














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


Jira (PUP-2966) Change stringify_facts default to false

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg updated an issue


















 Puppet /  PUP-2966



  Change stringify_facts default to false 










Change By:

 Kylo Ginsberg




Fix Version/s:

 4.0.0












   

 Add Comment






















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




 














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


Jira (PUP-2379) Deprecate `recurse = inf` for file type

2014-07-23 Thread Kylo Ginsberg (JIRA)
Title: Message Title










 

 Kylo Ginsberg commented on an issue


















  Re: Deprecate `recurse = inf` for file type 










This will be deprecated in docs, but won't produce a deprecation warning. Since docs is generated from code for this one, the commit to puppet will be an update to the parameter doc in the code.












   

 Add Comment

























 Puppet /  PUP-2379



  Deprecate `recurse = inf` for file type 







 This was an old synonym for `recurse = true`, but it only makes sense in a world where you can also set integer values for `recurse` instead of using `recurselimit`... which you can't do, anymore.















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




 














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


  1   2   >