Jira (PUP-11136) When Upgraded Puppet 5 to 6, Unable to Render ERB files via Template Function.

2021-07-08 Thread Gurender (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Gurender commented on  PUP-11136  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: When Upgraded Puppet 5 to 6, Unable to Render ERB files via Template Function.   
 

  
 
 
 
 

 
 Yes Josh Cooper, i did restart puppetserver and agent service both, it seems strange error.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.405185.1625049164000.77638.1625808960188%40Atlassian.JIRA.


Jira (PUP-9997) Puppet must not call Dir.chdir() except in a child process

2021-07-08 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-9997  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Puppet must not call Dir.chdir() except in a child process   
 

  
 
 
 
 

 
 I created a separate issue PUP-11166 for the Dir.chdir call in Puppet::Module#modules_by_path. There are still issues with the generate function, which is blocked on SERVER-3051. This behavior was added a long time ago due to redmine #3295. Also the target parameter (used when managing symlinks) relies on Dir.chdir, but it's been that way forever.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.323575.156763800.77630.1625794380039%40Atlassian.JIRA.


Jira (PUP-11166) Don't change current working directory when listing modules

2021-07-08 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11166  
 
 
  Don't change current working directory when listing modules   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Sprint: 
 Platform Core KANBAN  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.406447.1625788461000.77612.1625789940027%40Atlassian.JIRA.


Jira (PUP-11166) Don't change current working directory when listing modules

2021-07-08 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper assigned an issue to Josh Cooper  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11166  
 
 
  Don't change current working directory when listing modules   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Assignee: 
 Josh Cooper  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.406447.1625788461000.77596.1625788560036%40Atlassian.JIRA.


Jira (PUP-11166) Don't change current working directory when listing modules

2021-07-08 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11166  
 
 
  Don't change current working directory when listing modules   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 2021/07/08 4:54 PM  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Josh Cooper  
 

  
 
 
 
 

 
 When listing modules by path, puppet changes the current working directory unnecessarily. This was first reported in PUP-9997, but broken out here into a separate issue:  
 
 
 
 
 def modules_by_path  
 
 
 modules_by_path = {}  
 
 
 modulepath.each do |path|  
 
 
   if Puppet::FileSystem.exist?(path)  
 
 
 Dir.chdir(path) do  
 
 
   module_names = Dir.entries(path).select do |name|  
 
 
   

Jira (PUP-11165) Add 'scripts' directory to Puppet Module type (backport to Puppet 6)

2021-07-08 Thread Arthur Lawson (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Arthur Lawson created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11165  
 
 
  Add 'scripts' directory to Puppet Module type (backport to Puppet 6)   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 2021/07/08 4:19 PM  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Arthur Lawson  
 

  
 
 
 
 

 
 Based on this Bolt Github issue. https://github.com/puppetlabs/bolt/issues/2918  Similar to https://tickets.puppetlabs.com/browse/PUP-10996   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
 

Jira (PUP-11164) launchd service provider fails if a parsable but invalid LaunchAgent or LaunchDaemon plist file exists

2021-07-08 Thread Clay Caviness (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Clay Caviness commented on  PUP-11164  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: launchd service provider fails if a parsable but invalid LaunchAgent or LaunchDaemon plist file exists   
 

  
 
 
 
 

 
 I think https://github.com/puppetlabs/puppet/pull/8683 fixes this.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.406437.1625784567000.77561.1625784780075%40Atlassian.JIRA.


Jira (PUP-11164) launchd service provider fails if a parsable but invalid LaunchAgent or LaunchDaemon plist file exists

2021-07-08 Thread Clay Caviness (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Clay Caviness created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11164  
 
 
  launchd service provider fails if a parsable but invalid LaunchAgent or LaunchDaemon plist file exists   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Affects Versions: 
 PUP 7.8.0  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 Types and Providers  
 
 
Created: 
 2021/07/08 3:49 PM  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Clay Caviness  
 

  
 
 
 
 

 
 If a file in the LaunchAgents or LaunchDaemons paths is encountered that's parseable by Puppet::Util::Plist.read_plist_from_file but not a valid launchd plist file, then Puppet will crash with an error. To reproduce:  
 
 
 
 
 # echo "aaa" >/Library/LaunchDaemons/invalid.txt  
 
 
 # puppet resource service  
 
 
 Error: Could not run: undefined method `has_key?' for "aaa":String
  
 
 
 
  In launchd.rb line 141, the parsed plist (job) is checked with .has_key? to 

Jira (PUP-11136) When Upgraded Puppet 5 to 6, Unable to Render ERB files via Template Function.

2021-07-08 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-11136  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: When Upgraded Puppet 5 to 6, Unable to Render ERB files via Template Function.   
 

  
 
 
 
 

 
 We can ignore the ruby 2.0 issue, because puppetserver vendors JRuby 9.x. The top of the stack trace refers to line https://github.com/puppetlabs/puppet/blob/6.15.0/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb#L20 Based on the stack trace, it's trying to call Puppet::Pops::Loader::RubyLegacyFunctionInstantiator::Puppet[] (which of course doesn't exist) instead of the top-level Puppet[]. After upgrading the puppet-agent package on the puppetserver host, did you restart the puppetserver service?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.405185.1625049164000.77275.1625765940420%40Atlassian.JIRA.


Jira (PDB-5131) Enable drop joins by default

2021-07-08 Thread Carl Caum (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Carl Caum commented on  PDB-5131  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Enable drop joins by default   
 

  
 
 
 
 

 
 Zachary Kent Do we have any idea of what query failures from this will look like? I want to make sure we have a knowledge base article to identify issues that might arise from this and point to the docs to turn it off.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.399827.1621377697000.77233.1625762880057%40Atlassian.JIRA.


Jira (PDB-5114) Don't validate every query row returned against the schema

2021-07-08 Thread Rob Browning (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Rob Browning assigned an issue to Rob Browning  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5114  
 
 
  Don't validate every query row returned against the schema   
 

  
 
 
 
 

 
Change By: 
 Rob Browning  
 
 
Assignee: 
 Rob Browning  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.396667.1619041342000.77167.1625759700049%40Atlassian.JIRA.


Jira (PUP-9570) Catalog failure on first run due to pluginsync and environment switch

2021-07-08 Thread Jenna McCarthy (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jenna McCarthy updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-9570  
 
 
  Catalog failure on first run due to pluginsync and environment switch   
 

  
 
 
 
 

 
Change By: 
 Jenna McCarthy  
 
 
Labels: 
 001G01p3dQmIAI jira_escalated  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.300842.1553021716000.77123.1625758140094%40Atlassian.JIRA.


Jira (PUP-11029) pip ensure=>latest fails with pip>=20.3.0

2021-07-08 Thread Luchian Nemes (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Luchian Nemes updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11029  
 
 
  pip ensure=>latest fails with pip>=20.3.0   
 

  
 
 
 
 

 
Change By: 
 Luchian Nemes  
 
 
Release Notes Summary: 
 Starting with version 20.3b1, `pip` removed ability to list available versions of a package. This fix adds the `--use-deprecated=legacy-resolver` argument when querying available versions of a package  when using  with  affected versions of `pip`.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.395833.1618592933000.77111.1625757240152%40Atlassian.JIRA.


Jira (PUP-11029) pip ensure=>latest fails with pip>=20.3.0

2021-07-08 Thread Luchian Nemes (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Luchian Nemes updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11029  
 
 
  pip ensure=>latest fails with pip>=20.3.0   
 

  
 
 
 
 

 
Change By: 
 Luchian Nemes  
 
 
Release Notes: 
 Bug Fix  
 
 
Release Notes Summary: 
 Starting with version 20.3b1, `pip` removed ability to list available versions of a package. This fix adds the `--use-deprecated=legacy-resolver` argument when querying available versions of a package when using affected versions of `pip`.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.395833.1618592933000.77106.1625757180042%40Atlassian.JIRA.


Jira (PUP-3317) Extend Package Source to include HTTP Urls (Windows)

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-3317  
 
 
  Extend Package Source to include HTTP Urls (Windows)   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Release Notes Summary: 
 Puppet supports installing .exe packages using https as a package source. For example: package { 'mysql':  ensure  => '5.5.16',  source  => 'https://example.com/packages/mysql-5.5.16-winx64.exe',  install_options => ['INSTALLDIR=C:\mysql-5.5'],}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.51963.1411137406000.77086.1625756940135%40Atlassian.JIRA.


Jira (PUP-3317) Extend Package Source to include HTTP Urls (Windows)

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-3317  
 
 
  Extend Package Source to include HTTP Urls (Windows)   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Release Notes: 
 Enhancement  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.51963.1411137406000.77079.1625756700028%40Atlassian.JIRA.


Jira (PUP-11118) Puppet gem has no gemspec/license

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8  
 
 
  Puppet gem has no gemspec/license   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Release Notes Summary: 
 Puppet correctly reports  Apache 2.0 license when installed as a gem.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.403400.1623747414000.77078.1625756580026%40Atlassian.JIRA.


Jira (PUP-11118) Puppet gem has no gemspec/license

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8  
 
 
  Puppet gem has no gemspec/license   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Release Notes: 
 Enhancement  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.403400.1623747414000.77077.1625756520196%40Atlassian.JIRA.


Jira (PUP-11118) Puppet gem has no gemspec/license

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8  
 
 
  Puppet gem has no gemspec/license   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Fix Version/s: 
 PUP 7.9.0  
 
 
Fix Version/s: 
 PUP 6.24.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.403400.1623747414000.77076.1625756520152%40Atlassian.JIRA.


Jira (FACT-2929) Facter does not correctly detect that it is running inside of a podman container

2021-07-08 Thread Liam Hadley (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Liam Hadley commented on  FACT-2929  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Facter does not correctly detect that it is running inside of a podman container   
 

  
 
 
 
 

 
 Beth Glenfield- yep, that's a fair set of assumptions. Right now we are only targeting physical nodes, but have cloud experiences in the mix.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.385244.1611846144000.77059.1625755680032%40Atlassian.JIRA.


Jira (PUP-11030) Update Public-facing Puppet docs to include Debian 11 Bullseye amd64

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11030  
 
 
  Update Public-facing Puppet docs to include Debian 11 Bullseye amd64   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Fix Version/s: 
 PUP 7.9.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.397323.161958884.77017.1625752200148%40Atlassian.JIRA.


Jira (PUP-8243) Allow ERB templates to be tolerant of a leading BOM

2021-07-08 Thread Gabriel Nagy (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Gabriel Nagy updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8243  
 
 
  Allow ERB templates to be tolerant of a leading BOM   
 

  
 
 
 
 

 
Change By: 
 Gabriel Nagy  
 
 
Release Notes: 
 Enhancement  
 
 
Release Notes Summary: 
 Previously, if a template contained a BOM, then it was preserved by the `template` function, and would end up in the resulting file or PowerShell command. Now we pass the `bom` option when reading the file, which strips the BOM as it is read.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.226260.151309316.76996.1625751420030%40Atlassian.JIRA.


Jira (PUP-11030) Update Public-facing Puppet docs to include Debian 11 Bullseye amd64

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11030  
 
 
  Update Public-facing Puppet docs to include Debian 11 Bullseye amd64   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Fix Version/s: 
 PUP 6.24.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.397323.161958884.76973.1625747400028%40Atlassian.JIRA.


Jira (PUP-11059) Update Public-facing Puppet docs to remove Debian 8

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11059  
 
 
  Update Public-facing Puppet docs to remove Debian 8   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Fix Version/s: 
 PUP 6.24.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.399284.1620806763000.76972.1625747340027%40Atlassian.JIRA.


Jira (PUP-10820) Binary, Sensitive, etc deferred results can corrupt the transaction store

2021-07-08 Thread Patrick Grant (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Grant updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10820  
 
 
  Binary, Sensitive, etc deferred results can corrupt the transaction store   
 

  
 
 
 
 

 
Change By: 
 Patrick Grant  
 
 
CS Priority: 
 Needs Priority  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.380578.1607562201000.76966.1625746260037%40Atlassian.JIRA.


Jira (PUP-11079) Setting age=0 on a tidy resource does not remove all files

2021-07-08 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11079  
 
 
  Setting age=0 on a tidy resource does not remove all files   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Fix Version/s: 
 PUP 7.9.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.401529.1622726494000.76936.1625742060035%40Atlassian.JIRA.


Jira (PDB-5085) puppetdb module break puppetserver when both are installed on same machine

2021-07-08 Thread Adrian Iurca (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Adrian Iurca commented on  PDB-5085  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: puppetdb module break puppetserver when both are installed on same machine   
 

  
 
 
 
 

 
 Hi Austin Blatt, is there a chance to have the fix merged? kind regards, Adrian Iurca  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.13.2#813002-sha1:c495a97)  
 
 

 
   
 

  
 

  
 

   





-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.393392.1617144811000.76849.1625736600054%40Atlassian.JIRA.