Jira (PUP-2811) Provide method for class masquerading

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-2811  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Provide method for class masquerading   
 

  
 
 
 
 

 
 A 4x version of the include function was added, but the statement type Auth = Class['sssd'] causes an entity redefinition error on the server:  
 
 
 
 
 # cat ~/.puppetlabs/etc/code/environments/production/manifests/site.pp  
 
 
 include sssd  
 
 
 type Auth = Class['sssd']
  
 
 
 
   
 
 
 
 
 # cat ~/.puppetlabs/etc/code/environments/production/modules/sssd/manifests/init.pp  
 
 
 class sssd {}
  
 
 
 
   
 
 
 
 
 020-03-31 22:38:55,576 ERROR [qtp2029100676-94] [puppetserver] Puppet Server Error: Evaluation Error: Error while evaluating a Function Call, Attempt to redefine entity 'http://puppet.com/2016.1/runtime/type/auth'. Originally set at file:///Users/josh/.puppetlabs/etc/code/environments/production/manifests/site.pp?line=2=6. (file: /Users/josh/.puppetlabs/etc/code/environments/production/manifests/site.pp, line: 1, column: 1) on node node_a  
 
 
 /Users/josh/work/puppet/lib/puppet/pops/loader/base_loader.rb:125:in `fail_redefine'  
 
 
 /Users/josh/work/puppet/lib/puppet/pops/loader/base_loader.rb:82:in `set_entry'  
   

Jira (PUP-2811) Provide method for class masquerading

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-2811  
 
 
  Provide method for class masquerading   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 

  
 
 
 
 

 
 this stems from a discussion on puppet-dev. this is an attempt at putting on the radar. {code:puppet}# ~/modules/sssd/manifests/init.ppclass sssd as auth  {  {   # do something to install/setup/etc sssd  }  {code } {code:puppet}# ~/modules/nslcd/manifests/init.ppclass nslcd as auth  {  {   # do something to install/setup/etc nslcd  }  {code } {code:puppet}# ~/modules/ssh_authz/manifests/init.ppclass ssh_authz  {  {   require auth    # setup something with ssh that requires groups from sssd or nslcd  }  {code } {code:puppet} node nodeA  {  {   # include both class. because of the masquerading, nslcd is viewed as "auth", and dependencies are established properly.    include ssh_authz    include nslcd  }node nodeB  {  {   # same for this.    include sssd    include ssh_authz  }node nodeC  {  {   # this fails with duplicate resources, as both class show up as "auth"    # hopefully, the message is clear enough that it can be clear which    # modules provide auth, and conflict with each other    include sssd    include nslcd  }  {code }With something like that (and maybe the node definition comes from an ENC, where the order is hard to enforce, and puppet shouldn't care), we don't have to have weird dependency on class definition/order and no "if (defined(Class['nslcd']))" type construct to make all this works. in the case where one would include ssh_authz but not one of sssd/nslcd, then the dependency is broken. if one includes both nslcd and sssd, then when ssh_authz is processed, it fails (duplicate class "authz" provided by sssd and nslcd  --  –  or maybe that's OK, or maybe that's configurable). if sssd XOR nslcd is included, the dependencies are valid, and everything proceeds as needed.this could be an interesting construct to have within modules (other places where this could work is with databases with mysql/postgres, and some "interface" to create tables/creds/schema that are common to each module, without resorting to weird variable as classes type of hacks that are hard to read. (maybe this example is not quite right).all this is based on Debian package dependency. software A needs an MTA, but the MTA can be provided by more than one package. SoftwareA doesn't care if i have postfix, sendmail or exim. it just needs to know it can use the "sendmail" command to send mail, and/or connect to port 25 to send mail.  
 

  
 
 
 
 

 
 
 

  

Jira (PUP-2961) Node regexps generate invalid tags

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-2961  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Node regexps generate invalid tags   
 

  
 
 
 
 

 
 This is no longer an issue:  
 
 
 
 
 node /.*-\d+.example.com/ {  
 
 
   notify { "matched": }  
 
 
 }
  
 
 
 
  produces:  
 
 
 
 
 $  bx puppet agent -t --certname www-1.example.com  
 
 
 Info: Using configured environment 'production'  
 
 
 Info: Retrieving pluginfacts  
 
 
 Info: Retrieving plugin  
 
 
 Info: Retrieving locales  
 
 
 Info: Loading facts  
 
 
 Info: Caching catalog for www-1.example.com  
 
 
 Info: Applying configuration version '1585718038'  
 
 
 Notice: matched  
 
   

Jira (PUP-8650) Repository error message uri is missing part of the path

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8650  
 
 
  Repository error message uri is missing part of the path   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Labels: 
 beginner  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10120) resources cron purge fails if resource's name to be purged matches the title of a different resource

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10120  
 
 
  resources cron purge fails if resource's name to be purged matches the title of a different resource   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-8616) puppet module upgrade crashes

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-8616  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: puppet module upgrade crashes   
 

  
 
 
 
 

 
 Given the lack of response, I'm going to close this. Please reopen if it is still an issue.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10400) apply splay after network issues resolved

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10400  
 
 
  apply splay after network issues resolved   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10349) The '--extra' argument of 'puppet facts find' lacks documentation

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10349  
 
 
  The '--extra' argument of 'puppet facts find' lacks documentation   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Night's Watch  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-8774) puppet device does not use locking

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8774  
 
 
  puppet device does not use locking   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Modules Network Automation  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-8419) Agent's node request fails if environment directory doesn't exist locally

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-8419  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Agent's node request fails if environment directory doesn't exist locally   
 

  
 
 
 
 

 
 Closing this issue as we haven't received any update.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-8419) Agent's node request fails if environment directory doesn't exist locally

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-8419  
 
 
  Agent's node request fails if environment directory doesn't exist locally   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Platform Core Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-9604) Group resource (with auth_membership) fails if local Windows group contains not resolvable Domain accounts (possible regression)

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-9604  
 
 
  Group resource (with auth_membership) fails if local Windows group contains not resolvable Domain accounts (possible regression)   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Windows Night's Watch  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10319) puppet_gem package provider ensure => absent breaks subsequent File resources

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10319  
 
 
  puppet_gem package provider ensure => absent breaks subsequent File resources   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Release Notes: 
 Bug Fix  
 
 
Release Notes Summary: 
 The puppet_gem provider can now uninstall a gem during an agent run  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10319) puppet_gem package provider ensure => absent breaks subsequent File resources

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10319  
 
 
  puppet_gem package provider ensure => absent breaks subsequent File resources   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Sprint: 
 Platform Core KANBAN  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10319) puppet_gem package provider ensure => absent breaks subsequent File resources

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10319  
 
 
  puppet_gem package provider ensure => absent breaks subsequent File resources   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Fix Version/s: 
 PUP 6.15.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10319) puppet_gem package provider ensure => absent breaks subsequent File resources

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10319  
 
 
  puppet_gem package provider ensure => absent breaks subsequent File resources   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Team: 
 Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10404) Puppet apply can no longer copy directories recursively from a 'puppet:///' file source

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-10404  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Puppet apply can no longer copy directories recursively from a 'puppet:///' file source   
 

  
 
 
 
 

 
 This is fixed in nightly builds. You can also apply the patch in the linked ticket or wait until 6.15.0 is released in a few weeks.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10404) Puppet apply can no longer copy directories recursively from a 'puppet:///' file source

2020-03-31 Thread Trevor Vaughan (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Trevor Vaughan created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10404  
 
 
  Puppet apply can no longer copy directories recursively from a 'puppet:///' file source   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Affects Versions: 
 PUP 6.14.0  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 Catalog Application  
 
 
Created: 
 2020/03/31 5:55 PM  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 Trevor Vaughan  
 

  
 
 
 
 

 
 Puppet Version: 6.14.0 (6.13 works) Puppet Server Version: N/A OS Name/Version: EL7 Recursive directory copies from modules no longer appear to function in 6.14.0. Repeater:  
 
 
 
 
 mkdir -p testmod/{files,manifests}  
 
 
 mkdir testmod/files/test  
 
 
 echo 'one' > testmod/files/test/one  
 
 
 echo 'two' > testmod/files/test/two
  
 
 
  

Jira (PUP-8094) Lookup ignores environment from the classifier when using rule with trusted facts

2020-03-31 Thread Nick Walker (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nick Walker commented on  PUP-8094  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Lookup ignores environment from the classifier when using rule with trusted facts   
 

  
 
 
 
 

 
 Josh Cooper do you think we can proceed forward with what you proposed?   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10403) Puppet agent --help is missing the --tasks flag

2020-03-31 Thread Rob Braden (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Rob Braden updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10403  
 
 
  Puppet agent --help is missing the --tasks flag   
 

  
 
 
 
 

 
Change By: 
 Rob Braden  
 
 
Sprint: 
 Coremunity Hopper  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10403) Puppet agent --help is missing the --tasks flag

2020-03-31 Thread Rob Braden (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Rob Braden updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10403  
 
 
  Puppet agent --help is missing the --tasks flag   
 

  
 
 
 
 

 
Change By: 
 Rob Braden  
 
 
Team: 
 Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10399) Error: wrong number of arguments (given 2, expected 1) Deferred function doesn't return file / line number

2020-03-31 Thread Rob Braden (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Rob Braden updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10399  
 
 
  Error: wrong number of arguments (given 2, expected 1) Deferred function doesn't return file / line number   
 

  
 
 
 
 

 
Change By: 
 Rob Braden  
 
 
Team: 
 Coremunity  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10367) Puppet apply recursive copy of directory fails in file resource

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10367  
 
 
  Puppet apply recursive copy of directory fails in file resource   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Summary: 
 Recursive Puppet apply recursive  copy of directory fails in file resource  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10403) Puppet agent --help is missing the --tasks flag

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10403  
 
 
  Puppet agent --help is missing the --tasks flag   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Labels: 
 beginner  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PDB-4680) puppetdb restart failed during HA upgrade in 2018.1.x

2020-03-31 Thread Austin Blatt (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Austin Blatt commented on  PDB-4680  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: puppetdb restart failed during HA upgrade in 2018.1.x   
 

  
 
 
 
 

 
 The error was thrown from a case statement that appears to have had a misplaced parenthesis. https://github.com/puppetlabs/pe-puppetdb-extensions/pull/531  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2497) Facts are resolved multiple times

2020-03-31 Thread Romain Tartière
Title: Message Title


 
 
 
 

 
 
 

 
   
 Romain Tartière commented on  FACT-2497  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Facts are resolved multiple times   
 

  
 
 
 
 

 
 Awesome, after rebasing my work on top of master, the right values are collected! Thanks!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PDB-4680) puppetdb restart failed during HA upgrade in 2018.1.x

2020-03-31 Thread Shaigy Nixon (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Shaigy Nixon created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 PuppetDB /  PDB-4680  
 
 
  puppetdb restart failed during HA upgrade in 2018.1.x   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 enterprise_pe-acceptance-tests_integration-system_pe_ha-upgrade_nightly_2018_1_x___279__2020-03-31__sut-files.tgz  
 
 
Created: 
 2020/03/31 10:10 AM  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Shaigy Nixon  
 

  
 
 
 
 

 
 During HA upgrade in 2018.1.x from 2017.2.5 on redhat7 puppetdb restart failed  
 
 
 
 
   2020-03-31T01:14:26.529+00:00 - [Error]: /Stage[main]/Puppet_enterprise::Puppetdb::Service/Puppet_enterprise::Trapperkeeper::Pe_service[puppetdb]/Service[pe-puppetdb]: Failed to call refresh: Systemd restart for pe-puppetdb failed!  
 
 
   journalctl log for pe-puppetdb:  
 
 
   -- Logs begin at Tue 2020-03-31 00:20:42 UTC, end at Tue 2020-03-31 01:14:26 UTC. --  
 
 
   Mar 31 01:09:48 gothic-materiel systemd[1]: Stopping pe-puppetdb Service...  
 
 
 

Jira (PUP-9297) Audit and fix locations where set_mode is called with inappropriate permissions on Windows

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-9297  
 
 
  Audit and fix locations where set_mode is called with inappropriate permissions on Windows   
 

  
 
 
 
 

 
Change By: 
 Josh Cooper  
 
 
Labels: 
 beginner  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10400) apply splay after network issues resolved

2020-03-31 Thread Josh Cooper (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh Cooper commented on  PUP-10400  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: apply splay after network issues resolved   
 

  
 
 
 
 

 
 The part about agents returning to their original "slot" is filed as PUP-9563, so I believe this is a duplicate.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2330) Add OpenSSH host keys to core facts for Windows

2020-03-31 Thread Oana Tanasoiu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oana Tanasoiu assigned an issue to Oana Tanasoiu  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2330  
 
 
  Add OpenSSH host keys to core facts for Windows   
 

  
 
 
 
 

 
Change By: 
 Oana Tanasoiu  
 
 
Assignee: 
 Oana Tanasoiu  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10366) 5.5.17 agents fail on interval runs

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10366  
 
 
  5.5.17 agents fail on interval runs   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10380) pkgng does not support install_options

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10380  
 
 
  pkgng does not support install_options   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10378) 'puppet resource service' does not return all active services on Ubuntu

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10378  
 
 
  'puppet resource service' does not return all active services on Ubuntu   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10382) pkgng does not parse latest version properly

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10382  
 
 
  pkgng does not parse latest version properly   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10398) Installing/upgrading multiple architectures of a package.

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10398  
 
 
  Installing/upgrading multiple architectures of a package.   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10390) Ruby file gets loaded twice

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10390  
 
 
  Ruby file gets loaded twice   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10401) Pip package provider outputs warning on puppet run

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10401  
 
 
  Pip package provider outputs warning on puppet run   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR NW  -  Triage  2020-04-15  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10401) Pip package provider outputs warning on puppet run

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10401  
 
 
  Pip package provider outputs warning on puppet run   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR - Triage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10395) Gem provider reports changes when using composed requirements

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10395  
 
 
  Gem provider reports changes when using composed requirements   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR - Triage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10394) puppet cannot handle same package name with different providers

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10394  
 
 
  puppet cannot handle same package name with different providers   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR - Triage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10398) Installing/upgrading multiple architectures of a package.

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-10398  
 
 
  Installing/upgrading multiple architectures of a package.   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR - Triage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-5539) circular dependent RPM packages can't be uninstalled

2020-03-31 Thread Mihai Buzgau (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mihai Buzgau updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet /  PUP-5539  
 
 
  circular dependent RPM packages can't be uninstalled   
 

  
 
 
 
 

 
Change By: 
 Mihai Buzgau  
 
 
Sprint: 
 PR - Triage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2497) Facts are resolved multiple times

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie commented on  FACT-2497  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Facts are resolved multiple times   
 

  
 
 
 
 

 
 Romain Tartière today we merged https://tickets.puppetlabs.com/browse/FACT-2498 into master. This PR resolved the loading order of facts when using a OS hierarchy. You should be able to override facts from Solaris in Bsd, please let me know if it works for you.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2477) On Debian, include lsb-release as deb dependency

2020-03-31 Thread Oana Tanasoiu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oana Tanasoiu commented on  FACT-2477  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: On Debian, include lsb-release as deb dependency   
 

  
 
 
 
 

 
 Hi In Facter 4 we will use alternative ways to collect os facts.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2514) External fact script cannot be resolved on posix

2020-03-31 Thread Florin Dragos (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Florin Dragos created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2514  
 
 
  External fact script cannot be resolved on posix   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 Facter 4  
 
 
Created: 
 2020/03/31 3:42 AM  
 
 
Environment: 
 MacOs X  
 
 
Priority: 
  Normal  
 
 
Reporter: 
 Florin Dragos  
 

  
 
 
 
 

 
 Fact file ./external_facts/my_external_fact.sh was parsed but returned an empty data set   Looks like expand_command returns nil, resulting in the script not being executed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 

Jira (FACT-2512) Facter doesn't run on Raspbian

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie commented on  FACT-2512  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Facter doesn't run on Raspbian   
 

  
 
 
 
 

 
 Matt Love thank you for the PR, the code was merged in master and it will be included in the next release (this week).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10351) Puppet Agent fails to self-restart on config change or update

2020-03-31 Thread Luchian Nemes (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Luchian Nemes commented on  PUP-10351  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Puppet Agent fails to self-restart on config change or update   
 

  
 
 
 
 

 
 Nick Maludy/Frank Wall, could you please provide us the exact steps you're taking to reproduce/get to this state on a clean os? (manifests are also very welcomed)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2499) Facts that have aliases should be resolved only once

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie assigned an issue to Bogdan Irimie  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2499  
 
 
  Facts that have aliases should be resolved only once   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Assignee: 
 Bogdan Irimie  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2486) Implement core facts cache

2020-03-31 Thread Florin Dragos (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Florin Dragos assigned an issue to Florin Dragos  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2486  
 
 
  Implement core facts cache   
 

  
 
 
 
 

 
Change By: 
 Florin Dragos  
 
 
Assignee: 
 Florin Dragos  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (PUP-10394) puppet cannot handle same package name with different providers

2020-03-31 Thread Ciprian Badescu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ciprian Badescu commented on  PUP-10394  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: puppet cannot handle same package name with different providers   
 

  
 
 
 
 

 
 And 6.14.0 seems to behave the same:  
 
 
 
 
 [root@ski-residence ~]# puppet --version  
 
 
 6.14.0  
 
 
 [root@ski-residence ~]# puppet apply b.pp  
 
 
 Error: Evaluation Error: Error while evaluating a Resource Statement, Duplicate declaration: Package[postgresql] is already declared at (file: /root/b.pp, line: 1); cannot redeclare (file: /root/b.pp, line: 5) (file: /root/b.pp, line: 5, column: 1) on node ski-residence.delivery.puppetlabs.net  
 
 
 [root@ski-residence ~]# puppet resource package postgresql provider=dnf ensure=present  
 
 
 package { 'postgresql':  
 
 
   ensure   => '12.1-2.module_el8.1.0+273+979c16e6',  
 
 
   provider => 'dnf',  
 
 
 }  
 
 
 [root@ski-residence ~]# puppet resource package postgresql provider=dnfmodule ensure=present  
 
 
 package { 'postgresql':  
 
 
   ensure   => '12',  
 
  

Jira (PUP-10394) puppet cannot handle same package name with different providers

2020-03-31 Thread Ciprian Badescu (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ciprian Badescu commented on  PUP-10394  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: puppet cannot handle same package name with different providers   
 

  
 
 
 
 

 
 On 5.5.x, having '--param provider' or specifying second provider in manifest does not seems to help:  
 
 
 
 
 [root@ski-residence ~]# cat b.pp  
 
 
 package { 'postgresql':  
 
 
   ensure   => present,  
 
 
   provider => 'dnfmodule',  
 
 
 }  
 
 
 package { 'postgresql':  
 
 
   ensure   => present,  
 
 
   provider => 'dnf',  
 
 
 }  
 
 
    
 
 
 [root@ski-residence ~]# puppet apply b.pp  
 
 
 Error: Evaluation Error: Error while evaluating a Resource Statement, Duplicate declaration: Package[postgresql] is already declared at (file: /root/b.pp, line: 1); cannot redeclare (file: /root/b.pp, line: 5) (file: /root/b.pp, line: 5, column: 1) on node ski-residence.delivery.puppetlabs.net  
 
 
 [root@ski-residence ~]# puppet 

Jira (FACT-2513) command line help shows flags incorrectly

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2513  
 
 
  command line help shows flags incorrectly   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Epic Link: 
 FACT-2508  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2512) Facter doesn't run on Raspbian

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2512  
 
 
  Facter doesn't run on Raspbian   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Epic Link: 
 FACT-2508  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2513) command line help shows flags incorrectly

2020-03-31 Thread Bogdan Irimie (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bogdan Irimie updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2513  
 
 
  command line help shows flags incorrectly   
 

  
 
 
 
 

 
Change By: 
 Bogdan Irimie  
 
 
Sub-team: 
 ghost  
 
 
Team: 
 Night's Watch  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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


Jira (FACT-2513) command line help shows flags incorrectly

2020-03-31 Thread Jesse Reynolds (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Reynolds updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-2513  
 
 
  command line help shows flags incorrectly   
 

  
 
 
 
 

 
Change By: 
 Jesse Reynolds  
 
 
Summary: 
 command line help  does  shows  flags incorrectly  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)  
 
 

 
   
 

  
 

  
 

   





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