Jira (PUP-1042) Change --write-catalog-summary option into a config setting

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-1042  
 
 
  Change --write-catalog-summary option into a config setting   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Release Notes: 
 Enhancement  
 
 
Release Notes Summary: 
 Adds a "write_catalog_summary" setting to control whether the "resources.txt" and "classes.txt" files are written to disk after applying a catalog. By default, "puppet agent" and "puppet apply" behave the same as before. The latter will write those files by default, but "puppet apply" will not.  
 

  
 
 
 
 

 
 
 

 
 
 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.21360.1387191693000.127367.1631250960060%40Atlassian.JIRA.


Jira (PUP-3817) Clean up file settings code

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-3817  
 
 
  Clean up file settings code   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Release Notes: 
 Not Needed  
 

  
 
 
 
 

 
 
 

 
 
 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.63241.1420693952000.127368.1631250960121%40Atlassian.JIRA.


Jira (PUP-1042) Change --write-catalog-summary option into a config setting

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-1042  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Change --write-catalog-summary option into a config setting   
 

  
 
 
 
 

 
 Merged to 6.x in b92e16f12b  
 

  
 
 
 
 

 
 
 

 
 
 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.21360.1387191693000.127354.1631250780029%40Atlassian.JIRA.


Jira (PUP-3817) Clean up file settings code

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-3817  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Clean up file settings code   
 

  
 
 
 
 

 
 Merged to main in 2e82d780f9  
 

  
 
 
 
 

 
 
 

 
 
 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.63241.1420693952000.127353.1631250720036%40Atlassian.JIRA.


Jira (PUP-11240) SemVerRange(min, max, false) is not exclusive

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11240  
 
 
  SemVerRange(min, max, false) is not exclusive   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 

  
 
 
 
 

 
 *Puppet Version:* 7.10 The  {{SemVerRange.new}} provides different  method  signatures for defining an inclusive or exclusive semantic version range. The  method  signature  that accepts {{min}} and {{max}} is inclusive by default, but it accepts a third parameter to make it exclusive. However, it  doesn't work as specified (DOCUMENT-956)*Desired Behavior:*The following should print {{false}}:{code:puppet}notice(SemVer("2.0.0") =~ SemVerRange(SemVer("1.2.3"), SemVer("2.0.0"), false)){code}*Actual Behavior:*It prints {{true}}, just like if the parameter was omitted:{noformat}$ bx puppet apply -e 'notice(SemVer("2.0.0") =~ SemVerRange(SemVer("1.2.3"), SemVer("2.0.0"), false))'Notice: Scope(Class[main]): true$ bx puppet apply -e 'notice(SemVer("2.0.0") =~ SemVerRange(SemVer("1.2.3"), SemVer("2.0.0")))'   Notice: Scope(Class[main]): true{noformat}A workaround is to use the signature that takes a non-empty string:{noformat}$ bx puppet apply -e 'notice(SemVer("2.0.0") =~ SemVerRange(">= 1.2.3 < 2.0.0"))' Notice: Scope(Class[main]): false{noformat}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
  

Jira (PDB-5255) Update to new tk-jetty9 version to enable TLSv1.3 by default

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5255  
 
 
  Update to new tk-jetty9 version to enable TLSv1.3 by default   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 6.19.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.413568.1630005756000.127149.1631221380090%40Atlassian.JIRA.


Jira (PDB-5255) Update to new tk-jetty9 version to enable TLSv1.3 by default

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5255  
 
 
  Update to new tk-jetty9 version to enable TLSv1.3 by default   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.413568.1630005756000.127148.1631221380045%40Atlassian.JIRA.


Jira (PDB-5136) Inventory endpoint regular expression match matches structures

2021-09-09 Thread Oana Tanasoiu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oana Tanasoiu assigned an issue to Oana Tanasoiu  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5136  
 
 
  Inventory endpoint regular _expression_ match matches structures   
 

  
 
 
 
 

 
Change By: 
 Oana Tanasoiu  
 
 
Assignee: 
 Oana Tanasoiu  
 

  
 
 
 
 

 
 
 

 
 
 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.400487.1621889357000.127137.1631221140028%40Atlassian.JIRA.


Jira (PDB-5258) Investigate where does the `null?` operator work

2021-09-09 Thread Oana Tanasoiu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oana Tanasoiu commented on  PDB-5258  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Investigate where does the `null?` operator work   
 

  
 
 
 
 

 
 1.   
 
 
 
 
 ["=", ["fact", "id"], ]  
 
 
 
  works on the nodes endpoint because the array `["fact", "id"]` gets parsed along the way and when it's translated into sql plan it's the string `fact.id`. 2. 3. 4.  
 
 
 
 
 ["null?", ["fact", "id"], false]
  
 
 
 
   doesn't work on any endpoint, I tried on: catalogs, edges, environments, event-counts, events, fact-names, facts, fact-contents, fact-paths, nodes, producers, query, reports, resources On all endpoints the error is:  
 
 
 
 
 Value does not match schema: (not (map? nil))
  
 
 
 
   This error message is seen after applying the fix in  https://tickets.puppetlabs.com/browse/PDB-4305?focusedCommentId=821546&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-821546 . - The `null?` operator works fine on the queryable fields of the endpoints, so the query   
 
 
 
 
 ["null?", certname, false]  
 
 
 
  on nodes (`certname` is a direct field of the nodes endpoint) works as expected. If I force the field on which the `null?` operator is applied to be an array  
 
 
 

Jira (PUP-11240) SemVerRange(min, max, false) is not exclusive

2021-09-09 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11240  
 
 
  SemVerRange(min, max, false) is not exclusive   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 2021/09/09 9:22 AM  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Josh Cooper  
 

  
 
 
 
 

 
 Puppet Version: 7.10 The SemVerRange.new provides different signatures for defining an inclusive or exclusive semantic version range. The method that accepts min and max is inclusive by default, but it accepts a third parameter to make it exclusive. However, it doesn't work as specified (DOCUMENT-956) Desired Behavior: The following should print false:  
 
 
 
 
 notice(SemVer("2.0.0") =~ SemVerRange(SemVer("1.2.3"), SemVer("2.0.0"), false))
  
 
 
 
  Actual Behavior: It prints true, just like if the parameter was omitted:  
 
 
 
 
 $ bx puppet apply -e 'notice(SemVer("2.0.0") =~ SemVerRange(SemVer("1.2.3"), SemVer("2.0.0"), false))'  
 
 
 Notice: Scope(Class[main]): true  
 
 

Jira (PDB-5238) Draft release notes (PuppetDB 7.6.0)

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5238  
 
 
  Draft release notes (PuppetDB 7.6.0)   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 

  
 
 
 
 

 
 (Initial planned release date: 2021-09-14)Ensure all tickets have release notes. [This query|https://tickets.puppetlabs.com/issues/?jql=project%20%3D%20PDB%20AND%20(fixVersion%20%3D%20%22PDB%206.17.0%22%20%20OR%20fixVersion%20%3D%20%22PDB%207.4.1%22%20)%20AND%20(%22Release%20Notes%22%20IS%20EMPTY%20OR%20(%22Release%20Notes%22%20!%3D%20%20%22Not%20Needed%22%20AND%20%22Release%20Notes%20Summary%22%20IS%20EMPTY)%20)], once you've reconciled the Jira ticket fix versions in the previous step and configured the query with the current release version(s), will identify tickets whose release notes are not complete. Ask your team members to complete any tickets that need release notes (if the ticket's release note is simple you may write release notes for other people's tickets, but you certainly don't have to).* Write release notes for the release based on the tickets found in the previous step.One of the simplest ways to gather release notes (once you've completed the step above to ensure every ticket that needs a release note has one) is to use [this Jira query|https://tickets.puppetlabs.com/issues/?jql=project%20%3D%20PDB%20AND%20fixVersion%20in%20(%22PDB%206.17.0%22%2C%20%22PDB%207.4.0%22%2C%20%22PDB%207.4.1%22)%20AND%20%22Release%20Notes%22%20!%3D%20%22Not%20Needed%22] be sure to replace the fixVersions with the versions you are releasing and if you don't see release notes you'll need to verify that you're in List View and add the "Release Notes", "Release Notes Summary", and "fixVersion/s" columns to the page. All those view settings are configured in the top right via the two drop-downs below Share, Export, and Tools.** Check any tickets for a docs tab with desired information.** The release notes go in puppetdb\/documentation\/release_notes.markdown.**  Request review from the docs team by pinging @clairecadman in the opened PR, at least one day before Ready to Ship**  The opened PR should be approved prior to a go\/no-go. Release notes _must_ be ready before a go.** Docs are built daily and at release time. If notes need to be published out of band ask in `#prod-docs`.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
  

Jira (PDB-5213) Update PDB to pick up i18n changes from clj-parent

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5213  
 
 
  Update PDB to pick up i18n changes from clj-parent   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.408750.1627457775000.126649.1631199600238%40Atlassian.JIRA.


Jira (PDB-5216) Add optional query origin field

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5216  
 
 
  Add optional query origin field   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.408854.1627502694000.126647.1631199600144%40Atlassian.JIRA.


Jira (PDB-5135) PuppetDB should warn about resource titles that exceed Postgres index sizes

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5135  
 
 
  PuppetDB should warn about resource titles that exceed Postgres index sizes   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.399989.162152585.126648.1631199600192%40Atlassian.JIRA.


Jira (PDB-5164) Fully document AST field syntax

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5164  
 
 
  Fully document AST field syntax   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Release Notes: 
 Not Needed  
 

  
 
 
 
 

 
 
 

 
 
 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.405083.1624981418000.126645.1631199540181%40Atlassian.JIRA.


Jira (PDB-5164) Fully document AST field syntax

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5164  
 
 
  Fully document AST field syntax   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.405083.1624981418000.126644.1631199540135%40Atlassian.JIRA.


Jira (PDB-5235) Supress false positive nvd failure for CVE-2020-36448

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5235  
 
 
  Supress false positive nvd failure for CVE-2020-36448   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.412918.1629491442000.126646.1631199540225%40Atlassian.JIRA.


Jira (PDB-5203) Script that runs the pdb locust load tests

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5203  
 
 
  Script that runs the pdb locust load tests   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.408406.162704879.126642.1631199420285%40Atlassian.JIRA.


Jira (PDB-5204) Perform diff on the locust results

2021-09-09 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5204  
 
 
  Perform diff on the locust results   
 

  
 
 
 
 

 
Change By: 
 Austin Blatt  
 
 
Fix Version/s: 
 PDB 7.6.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.408407.1627050042000.126641.1631199420240%40Atlassian.JIRA.


Jira (PUP-11232) freeze string in the prime candidates files

2021-09-09 Thread Claire Cadman (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claire Cadman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11232  
 
 
  freeze string in the prime candidates files   
 

  
 
 
 
 

 
Change By: 
 Claire Cadman  
 
 
Labels: 
 doc-reviewed  
 

  
 
 
 
 

 
 
 

 
 
 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.413213.1629801903000.126562.1631192940119%40Atlassian.JIRA.


Jira (FACT-3063) Facter unable to get processor speed on macOS 11 arm64 which causes the resolver to blow up

2021-09-09 Thread Claire Cadman (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claire Cadman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3063  
 
 
  Facter unable to get processor speed on macOS 11 arm64 which causes the resolver to blow up   
 

  
 
 
 
 

 
Change By: 
 Claire Cadman  
 
 
Labels: 
 doc-reviewed  
 

  
 
 
 
 

 
 
 

 
 
 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.409868.1628076333000.126558.1631192700089%40Atlassian.JIRA.


Jira (FACT-3057) Facter ruby API/binding fails to resolve facts from environment variables

2021-09-09 Thread Claire Cadman (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claire Cadman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3057  
 
 
  Facter ruby API/binding fails to resolve facts from environment variables   
 

  
 
 
 
 

 
Change By: 
 Claire Cadman  
 
 
Labels: 
 doc-reviewed  
 

  
 
 
 
 

 
 
 

 
 
 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.408355.1627027953000.126543.1631190480092%40Atlassian.JIRA.


Jira (FACT-3059) AIX reporting "odd number of arguments for Hash" with Facter 4

2021-09-09 Thread Claire Cadman (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claire Cadman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3059  
 
 
  AIX reporting "odd number of arguments for Hash" with Facter 4   
 

  
 
 
 
 

 
Change By: 
 Claire Cadman  
 
 
Labels: 
 doc-reviewed 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.408774.1627478355000.126542.1631190480048%40Atlassian.JIRA.


Jira (FACT-3060) AIX producing "Could not resolve mountpoints" with Facter 4

2021-09-09 Thread Claire Cadman (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claire Cadman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3060  
 
 
  AIX producing "Could not resolve mountpoints" with Facter 4   
 

  
 
 
 
 

 
Change By: 
 Claire Cadman  
 
 
Labels: 
 doc-reviewed 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.408804.1627485201000.126518.1631186880029%40Atlassian.JIRA.


Jira (FACT-2955) AIX - mismatched processor frequencies found; facter will only report one of them

2021-09-09 Thread Victor Bobosila (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Bobosila assigned an issue to Victor Bobosila  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2955  
 
 
  AIX - mismatched processor frequencies found; facter will only report one of them   
 

  
 
 
 
 

 
Change By: 
 Victor Bobosila  
 
 
Assignee: 
 Victor Bobosila  
 

  
 
 
 
 

 
 
 

 
 
 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.389740.161478837.126503.1631185140156%40Atlassian.JIRA.


Jira (PUP-10897) List "manages local users and groups" (forcelocal) provider support as "with libuser"

2021-09-09 Thread Ciprian Badescu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ciprian Badescu updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10897  
 
 
  List "manages local users and groups" (forcelocal) provider support as "with libuser"   
 

  
 
 
 
 

 
Change By: 
 Ciprian Badescu  
 
 
Release Notes Summary: 
 Document `manages_local_users_and_groups` feature in `user` and `group` resource types  
 

  
 
 
 
 

 
 
 

 
 
 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.387112.1613051573000.126502.1631185020120%40Atlassian.JIRA.


Jira (PUP-10897) List "manages local users and groups" (forcelocal) provider support as "with libuser"

2021-09-09 Thread Ciprian Badescu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ciprian Badescu updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10897  
 
 
  List "manages local users and groups" (forcelocal) provider support as "with libuser"   
 

  
 
 
 
 

 
Change By: 
 Ciprian Badescu  
 
 
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.387112.1613051573000.126501.1631185020049%40Atlassian.JIRA.


Jira (PUP-11106) superclass mismatch for class Uniquefile (TypeError)

2021-09-09 Thread Ciprian Badescu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ciprian Badescu updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-11106  
 
 
  superclass mismatch for class Uniquefile (TypeError)   
 

  
 
 
 
 

 
Change By: 
 Ciprian Badescu  
 
 
Fix Version/s: 
 PUP 7.11.0  
 
 
Fix Version/s: 
 PUP 7.12.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.402824.1623227757000.126294.1631173320051%40Atlassian.JIRA.


Jira (PDB-5256) Puppet Query should have proper error message when it is failed

2021-09-09 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie assigned an issue to Bogdan Irimie  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5256  
 
 
  Puppet Query should have proper error message when it is failed   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Assignee: 
 Bogdan Irimie  
 

  
 
 
 
 

 
 
 

 
 
 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.414480.1630996076000.126287.1631171520043%40Atlassian.JIRA.


Jira (PDB-5256) Puppet Query should have proper error message when it is failed

2021-09-09 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie assigned an issue to Sebastian Miclea  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-5256  
 
 
  Puppet Query should have proper error message when it is failed   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Assignee: 
 Bogdan Irimie Sebastian Miclea  
 

  
 
 
 
 

 
 
 

 
 
 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.414480.1630996076000.126288.1631171520089%40Atlassian.JIRA.