Jira (PUP-8089) Pluginsync locale files

2017-11-03 Thread Maggie Dreyer (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Maggie Dreyer commented on  PUP-8089 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Pluginsync locale files  
 
 
 
 
 
 
 
 
 
 
Merged to 5.3.x at https://github.com/puppetlabs/puppet/commit/c04f34256e3d0fe0d78390789d0bdeb4317a720f 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-1277) service does not implement custom start / stop commands on windows

2017-11-03 Thread Eric Sorenson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Sorenson commented on  PUP-1277 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: service does not implement custom start / stop commands on windows  
 
 
 
 
 
 
 
 
 
 
If you want to use your own start/stop commands you need to specify the base service provider. 
 
 
 
 
 
 
service {'gitlab-runner': 
 
 
 
 
  ensure => stopped, 
 
 
 
 
  provider => base, 
 
 
 
 
  start => 'c:\windows\system32\windowspowershell\v1.0\powershell.exe Start-Service gitlab-runner', 
 
 
 
 
  stop => 'c:\windows\system32\windowspowershell\v1.0\powershell.exe Start-Service gitlab-runner', 
 
 
 
 
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

Jira (PUP-1277) service does not implement custom start / stop commands on windows

2017-11-03 Thread Eric Sorenson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Sorenson updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-1277 
 
 
 
  service does not implement custom start / stop commands on windows  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Sorenson 
 
 
 
 
 
 
 
 
 
 The provider for service does not have support for explicit start and stop commands, however the documentation does not mention that limitation.Example (taken from the mcollective module): < { code > }   service { $mc_service_name:ensure=> running,enable=> true,hasstatus => true,start => $mc_service_start,stop  => $mc_service_stop,  }  { code > } Windows will still run the default command, which is:* C:\Windows\System32\net.exe $mc_service_name start* C:\Windows\System32\net.exe $mc_service_name stopIn stead of the specified start and stop commands.The fix could be a simple as this: < { code > } --- lib\puppet\provider\service\windows-orig.rb 2013-06-17 17:23:16 +0200+++ lib\puppet\provider\service\windows.rb 2013-10-25 11:57:42 +0200@@ -73,13 +73,21 @@   end end -net(:start, @resource[:name])+if @resource[:start]+  system(@resource[:start])+else+  net(:start, @resource[:name])+ end   rescue Puppet::ExecutionFailure => detail raise Puppet::Error.new("Cannot start #{@resource[:name]}, error was: #{detail}" )   enddef stop-net(:stop, @resource[:name])+if @resource[:stop]+  system(@resource[:stop])+else+  net(:stop, @resource[:name])+ end   rescue Puppet::ExecutionFailure => detail raise Puppet::Error.new("Cannot stop #{@resource[:name]}, error was: #{detail}" )   end  { code > } 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 

Jira (BOLT-116) Consider the contents and format of a possible bolt.conf

2017-11-03 Thread Nathan Shobe (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nathan Shobe commented on  BOLT-116 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Consider the contents and format of a possible bolt.conf  
 
 
 
 
 
 
 
 
 
 
Obviously, core puppet devs can and will ultimately decide the direction bolt goes, but I'm going based upon the way people use the other "agentless" (which is a bad term) tool on the market. People general start projects using that tool in their small corner of a company/org/group and share their work, and it slowly expands from there. I just want to emphasize that the conf for bolt shouldn't rely on an existing puppet installation or infrastructure. People should be able to use this regardless of puppet agent adoption in a group of hosts and is why (from what I understand) the examples focus heavily on getting other languages to run. 
And actually, as I'm writing this I'm starting to think that as long as I can run it with the data in module approach without requiring the environment or gobal layer it likely shouldn't impede adoption efforts. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8125) Hiera 5 Custom Backends don't work with puppet apply

2017-11-03 Thread Robert Brooks (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Robert Brooks updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8125 
 
 
 
  Hiera 5 Custom Backends don't work with puppet apply  
 
 
 
 
 
 
 
 
 

Change By:
 
 Robert Brooks 
 
 
 
 
 
 
 
 
 
 If we add a custom backend in /etc/puppetlabs/code/environments/vagrant/hiera.yaml (attached) and run {{puppet apply /dev/null}} we get... {{ Error: Evaluation Error: Error while evaluating a Resource Statement, Unable to find 'lookup_key' function named 'hiera_mysql' in /etc/puppetlabs/code/environments/vagrant/hiera.yaml on node xenial.vagrant }} Looking at strace, it appears module functions are not being loaded.hiera_mysql function is puppet module from https://github.com/crayfishx/hiera-mysql deployed at /etc/puppetlabs/code/environments/vagrant/modules/hiera-mysql 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3741) Prioritize catalogs and facts during PDB sync

2017-11-03 Thread Charlie Sharpsteen (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Charlie Sharpsteen updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3741 
 
 
 
  Prioritize catalogs and facts during PDB sync  
 
 
 
 
 
 
 
 
 

Change By:
 
 Charlie Sharpsteen 
 
 
 

Affects Version/s:
 
 PDB 4.2.3.5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3748) (docs) Fix typos in the facts-blacklist docs.

2017-11-03 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3748 
 
 
 
  (docs) Fix typos in the facts-blacklist docs.  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2017/11/03 2:47 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 gepetto-bot 
 
 
 
 
 
 
 
 
 
 
Corrects two misspellings, clarifies the difference between INI and HOCON values, and wraps the examples in preformatting backticks. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 

Jira (PUP-8125) Hiera 5 Custom Backends don't work with puppet apply

2017-11-03 Thread Robert Brooks (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Robert Brooks created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8125 
 
 
 
  Hiera 5 Custom Backends don't work with puppet apply  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PUP 4.10.8 
 
 
 

Assignee:
 
 Thomas Hallgren 
 
 
 

Attachments:
 

 hiera.yaml 
 
 
 

Components:
 

 Hiera & Lookup 
 
 
 

Created:
 

 2017/11/03 2:39 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Robert Brooks 
 
 
 
 
 
 
 
 
 
 
If we add a custom backend in /etc/puppetlabs/code/environments/vagrant/hiera.yaml (attached) and run puppet apply /dev/null we get... 
Error: Evaluation Error: Error while evaluating a Resource Statement, Unable to find 'lookup_key' function named 'hiera_mysql' in /etc/puppetlabs/code/environments/vagrant/hiera.yaml on node xenial.vagrant 
Looking at strace, it appears module functions are not being loaded. 
hiera_mysql function is puppet module from https://github.com/crayfishx/hiera-mysql deployed at /etc/puppetlabs/code/environments/vagrant/modules/hiera-mysql 
 
  

Jira (BOLT-202) When running bolt task on a WIndows node without Puppet installed, the error message is very obscure.

2017-11-03 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet Task Runner /  BOLT-202 
 
 
 
  When running bolt task on a WIndows node without Puppet installed, the error message is very obscure.  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Fix Version/s:
 
 BOLT 0.8.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (BOLT-202) When running bolt task on a WIndows node without Puppet installed, the error message is very obscure.

2017-11-03 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown assigned an issue to Ethan Brown 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet Task Runner /  BOLT-202 
 
 
 
  When running bolt task on a WIndows node without Puppet installed, the error message is very obscure.  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Assignee:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3747) PDB holds summary query transactions open during long syncs

2017-11-03 Thread Charlie Sharpsteen (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Charlie Sharpsteen updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3747 
 
 
 
  PDB holds summary query transactions open during long syncs  
 
 
 
 
 
 
 
 
 

Change By:
 
 Charlie Sharpsteen 
 
 
 

Summary:
 
 PDB holds  summary  query transactions open during long syncs 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3747) PDB holds query transactions open during long syncs

2017-11-03 Thread Charlie Sharpsteen (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Charlie Sharpsteen created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3747 
 
 
 
  PDB holds query transactions open during long syncs  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PDB 5.1.1, PDB 4.2.3.5 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2017/11/03 2:18 PM 
 
 
 

Priority:
 
  Critical 
 
 
 

Reporter:
 
 Charlie Sharpsteen 
 
 
 
 
 
 
 
 
 
 
When PDB replication syncs against a remote, the following process is used to to bring records over: 
 

A summary query is run against the remote PuppetDB API and the local Postgres DB that returns hashes or other ID values identifying the data stored on each side.
 
 
 

For each batch of 2000 IDs that are present in the remote summary query, but not the local query, a data transfer query is run to bring records over.
 
 
Importantly, the summary query and its DB transactions are held open while the data transfer queries are run. In the case of syncing reports for a large population (10s of thousands of nodes), the data transfer can take several days if a significant partition occurred. This means that the summary query is held open for several days which prevents Postgres VACUUM from reclaiming dead tuples and refreshing planner statistics. Eventually DB performance will start 

Jira (PUP-8085) Win-2012r2 JA Puppet Acceptance showing 25 Failed Tests

2017-11-03 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8085 
 
 
 
  Win-2012r2 JA Puppet Acceptance showing 25 Failed Tests  
 
 
 
 
 
 
 
 
 

Change By:
 
 John Duarte 
 
 
 

Assignee:
 
 John Duarte 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8113) Remove incorrect deprecation warning for `audit` metaparam

2017-11-03 Thread Kris Bosland (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kris Bosland updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8113 
 
 
 
  Remove incorrect deprecation warning for `audit` metaparam  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kris Bosland 
 
 
 

Sprint:
 
 Platform Core  Hopper  KANBAN 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8113) Remove incorrect deprecation warning for `audit` metaparam

2017-11-03 Thread Kris Bosland (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kris Bosland assigned an issue to Kris Bosland 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8113 
 
 
 
  Remove incorrect deprecation warning for `audit` metaparam  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kris Bosland 
 
 
 

Assignee:
 
 Kris Bosland 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8097) Research: Evaluate VM Pooler processes in attempt to standardize

2017-11-03 Thread Jennifer Solman (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jennifer Solman commented on  PUP-8097 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Research: Evaluate VM Pooler processes in attempt to standardize  
 
 
 
 
 
 
 
 
 
 
John Duarte gave me a few tips: 
 

QA has a puppet module that sets up environments for their team. Consider looking into this.
 

Chris Price puppetized a VM infrastructure. You can give the environment your commit SHA and it sets up test runner, jenkins, a master / agent set up. Ask Justin about digging up the bluejeans recording on it.
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (FACT-1781) Facter acceptance tests fail printing a boost::optional on Solaris 10 x86_64

2017-11-03 Thread Casey Williams (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Casey Williams commented on  FACT-1781 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Facter acceptance tests fail printing a boost::optional on Solaris 10 x86_64  
 
 
 
 
 
 
 
 
 
 
This may be the result of a bad mergeup - we'll do another one today and see if there's any improvement. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8065) puppet acceptance test server_list_setting.rb fails on AIX and Solaris

2017-11-03 Thread Casey Williams (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Casey Williams commented on  PUP-8065 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: puppet acceptance test server_list_setting.rb fails on AIX and Solaris  
 
 
 
 
 
 
 
 
 
 
I looked a little closer at the logs for these failures - it looks like this may actually be just another sign of FACT-1781. It seems like a bad mergeup may have prevente the fix for that one from making its way from 5.3.x into master - there will be another mergeup today and we'll see if there's any improvement. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3746) curl tips no longer work on OS X

2017-11-03 Thread Michelle Fredette (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Michelle Fredette moved an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3746 
 
 
 
  curl tips no longer work on OS X  
 
 
 
 
 
 
 
 
 

Change By:
 
 Michelle Fredette 
 
 
 

Method Found:
 
 Needs Assessment 
 
 
 

Workflow:
 
 Documentation Scrum Team  Workflow 
 
 
 

Key:
 
 DOC PDB - 2694 3746 
 
 
 

Project:
 
 Documentation [Internal] PuppetDB 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8090) Load module translation files

2017-11-03 Thread Maggie Dreyer (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Maggie Dreyer assigned an issue to Maggie Dreyer 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8090 
 
 
 
  Load module translation files  
 
 
 
 
 
 
 
 
 

Change By:
 
 Maggie Dreyer 
 
 
 

Assignee:
 
 Maggie Dreyer 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-7886) Resolve several AAA and TACACS failures in Cisco pipeline

2017-11-03 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte assigned an issue to Rick Sherman 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-7886 
 
 
 
  Resolve several AAA and TACACS failures in Cisco pipeline  
 
 
 
 
 
 
 
 
 

Change By:
 
 John Duarte 
 
 
 

Assignee:
 
 John Duarte Rick Sherman 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8124) Puppet 5 Release Notes Missed a Language Deprecation

2017-11-03 Thread Trevor Vaughan (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Trevor Vaughan created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8124 
 
 
 
  Puppet 5 Release Notes Missed a Language Deprecation  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 Language 
 
 
 

Created:
 

 2017/11/03 10:27 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Trevor Vaughan 
 
 
 
 
 
 
 
 
 
 
Looking at https://puppet.com/docs/puppet/5.0/release_notes.html there was a language deprecation that was missed. 
In Puppet 4, the following code works as expected and prints 'does it work yes' 
 
 
 
 
 
 
class foo (  
 
 
 
 
  $var1 = 'does it work', 
 
 
 
 
  $var2 = "${foo::var1} yes" 
 
 

Jira (BOLT-179) Bolt cannot decrypt private key without relying on ssh-agent

2017-11-03 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet Task Runner /  BOLT-179 
 
 
 
  Bolt cannot decrypt private key without relying on ssh-agent  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 
 
 
 
 
 
 
 Bolt runs sets {{ interactive non_interactive=true }}  to false  when calling into net-ssh. If ssh-agent is not running or doesn't contain the identity needed to connect, and the identity uses an encrypted private key, then net-ssh cannot decrypt and the connection fails. See https://github.com/net-ssh/net-ssh/blob/8c8d0016a09b17104fb6543b8de8a8172c41dccc/lib/net/ssh/key_factory.rb#L62-L73.Recent versions of bolt display the error as:{noformat}$ bx bolt command run id -n XXX -u joshXXX:Failed to connect to XXX: the given identity is known, but the private key could not be loaded: OpenSSL::PKey::PKeyError (Could not parse PKey: no start line){noformat}Earlier versions (like 0.5.0) emitted an error like the one below:Command CLI is {{bolt command run "ls" -n abaddon.delivery.puppetlabs.net}}Full stack trace{code}2017-10-13T11:20:47.536990  ERROR abaddon.delivery.puppetlabs.net: Could not parse PKey: no start line (ArgumentError)/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:115:in `read'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:115:in `block in classify_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:60:in `[]'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:60:in `load_data_private_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:43:in `load_private_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:142:in `sign'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:62:in `authenticate_with'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:20:in `block in authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:122:in `block in each_identity'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:119:in `each'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:119:in `each_identity'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:19:in `authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:80:in `block in authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:66:in `each'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:66:in `authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh.rb:241:in 

Jira (BOLT-179) Bolt cannot decrypt private key without relying on ssh-agent

2017-11-03 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet Task Runner /  BOLT-179 
 
 
 
  Bolt cannot decrypt private key without relying on ssh-agent  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 
 
 
 
 
 
 
 Bolt runs sets {{interactive}} to false when calling into net-ssh. If ssh-agent is not running or doesn't contain the identity needed to connect, and the identity uses an encrypted private key, then net-ssh cannot decrypt and the connection fails. See https://github.com/net-ssh/net-ssh/blob/8c8d0016a09b17104fb6543b8de8a8172c41dccc/lib/net/ssh/key_factory.rb#L62-L73.Recent versions of bolt display the error as:{noformat}$ bx bolt command run id -n XXX -u joshXXX:Failed to connect to XXX: the given identity is known, but the private key could not be loaded: OpenSSL::PKey::PKeyError (Could not parse PKey: no start line){noformat}Earlier versions (like 0.5.0) emitted an error like the one below: Command CLI is {{bolt command run "ls" -n abaddon.delivery.puppetlabs.net}}Full stack trace{code}2017-10-13T11:20:47.536990  ERROR abaddon.delivery.puppetlabs.net: Could not parse PKey: no start line (ArgumentError)/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:115:in `read'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:115:in `block in classify_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:60:in `[]'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:60:in `load_data_private_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/key_factory.rb:43:in `load_private_key'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:142:in `sign'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:62:in `authenticate_with'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:20:in `block in authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:122:in `block in each_identity'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:119:in `each'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/key_manager.rb:119:in `each_identity'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/methods/publickey.rb:19:in `authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:80:in `block in authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:66:in `each'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh/authentication/session.rb:66:in `authenticate'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/net-ssh-4.2.0/lib/net/ssh.rb:241:in `start'/Users/samuel/.rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/bolt-0.5.0/lib/bolt/node/ssh.rb:14:in 

Jira (PDB-3745) Various tables in the puppetdb database get autovacuumed too frequently

2017-11-03 Thread Nick Walker (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Walker updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3745 
 
 
 
  Various tables in the puppetdb database get autovacuumed too frequently   
 
 
 
 
 
 
 
 
 

Change By:
 
 Nick Walker 
 
 
 
 
 
 
 
 
 
 h1.  The ProblemObserving customer environments and our internal puppet deployment using pgbadger we see that various table gets VACUUMed far more frequently than necessary only removing a few hundred or thousand dead tuples per vacuum.This can be improved by changing the percentage threshold after which postgresql thinks it should vacumm the tables.  To start with the factsets, catalogs, and certnames tables have the largest issue.  h1.  Pull Request  coming soon  https://github.com/puppetlabs/puppetdb/pull/2393 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-3745) Various tables in the puppetdb database get autovacuumed too frequently

2017-11-03 Thread Nick Walker (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Walker created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 PuppetDB /  PDB-3745 
 
 
 
  Various tables in the puppetdb database get autovacuumed too frequently   
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2017/11/03 10:12 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Nick Walker 
 
 
 
 
 
 
 
 
 
 
The Problem 
Observing customer environments and our internal puppet deployment using pgbadger we see that various table gets VACUUMed far more frequently than necessary only removing a few hundred or thousand dead tuples per vacuum. 
This can be improved by changing the percentage threshold after which postgresql thinks it should vacumm the tables.  
To start with the factsets, catalogs, and certnames tables have the largest issue.  
Pull Request  
coming soon  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
   

Jira (BOLT-179) Bolt cannot decrypt private key without relying on ssh-agent

2017-11-03 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet Task Runner /  BOLT-179 
 
 
 
  Bolt cannot decrypt private key without relying on ssh-agent  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Summary:
 
 Could not parse PKey: no start line (ArgumentError) Bolt cannot decrypt private key without relying on ssh-agent 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8065) puppet acceptance test server_list_setting.rb fails on AIX and Solaris

2017-11-03 Thread Casey Williams (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Casey Williams commented on  PUP-8065 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: puppet acceptance test server_list_setting.rb fails on AIX and Solaris  
 
 
 
 
 
 
 
 
 
 
This keeps recurring on master - a few examples from last night: 
 

Solaris 11: https://jenkins-master-prod-1.delivery.puppetlabs.net/view/puppet-agent/view/master/view/Suite/job/platform_puppet-agent_puppet-agent-integration-suite_daily-master/COMPONENT=puppet,SLAVE_LABEL=beaker,TEST_TARGET=solaris11-64a/12/console
 

Solaris 10: https://jenkins-master-prod-1.delivery.puppetlabs.net/view/puppet-agent/view/master/view/Suite/job/platform_puppet-agent_puppet-agent-integration-suite_daily-master/COMPONENT=puppet,SLAVE_LABEL=beaker,TEST_TARGET=solaris10-64a/12/console
 

AIX 7.2: https://jenkins-master-prod-1.delivery.puppetlabs.net/view/puppet-agent/view/master/view/Suite/job/platform_puppet-agent_puppet-agent-integration-suite_daily-master/COMPONENT=puppet,SLAVE_LABEL=beaker,TEST_TARGET=aix72-POWERfa/12/console
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (BOLT-162) Acceptance: add beaker tests for bolt subcommands

2017-11-03 Thread John Duarte (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 John Duarte commented on  BOLT-162 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Acceptance: add beaker tests for bolt subcommands  
 
 
 
 
 
 
 
 
 
 
Beaker scaffolding and rototiller rake tasks committed to master at https://github.com/puppetlabs/bolt/commit/519114f245ec6d119fc459ea1367c295d2553914 
https://github.com/puppetlabs/bolt/pull/148 opened for adding the subcommand tests. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8117) It should be possible to parameterize Boolean with either true or false

2017-11-03 Thread Eric Delaney (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Delaney updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8117 
 
 
 
  It should be possible to parameterize Boolean with either true or false  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Delaney 
 
 
 

QA Risk Assessment:
 
 Needs Assessment No Action 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8119) Add a boolean "case independent" flag to the Enum type

2017-11-03 Thread Eric Delaney (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Delaney updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8119 
 
 
 
  Add a boolean "case independent" flag to the Enum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Delaney 
 
 
 

QA Risk Assessment:
 
 Needs Assessment No Action 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (FACT-1794) os.family.major incorrectly returns a number with a decimal point for Ubuntu

2017-11-03 Thread garrett honeycutt (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 garrett honeycutt created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-1794 
 
 
 
  os.family.major incorrectly returns a number with a decimal point for Ubuntu  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2017/11/03 8:35 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 garrett honeycutt 
 
 
 
 
 
 
 
 
 
 
os.release.major is used to determine the major release of a series and should never have a decimal place in it. So if os.release.full is 7.1 then major would be 7 and Ubuntu 16.04 would be 16. 
 
 
 
 
 
 
facterversion => 3.6.7 
 
 
 
 
os => { 
 
 
 
 
  architecture => "amd64", 
 
 
 
 
  distro => { 
 
 
 
  

Jira (PUP-8121) Init[T] close to unusuable due to relaxed signatures in several core data types

2017-11-03 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren assigned an issue to Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8121 
 
 
 
  Init[T] close to unusuable due to relaxed signatures in several core data types  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Assignee:
 
 Thomas Hallgren Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8123) Upper Case in class names is not working correctly

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-8123 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Upper Case in class names is not working correctly  
 
 
 
 
 
 
 
 
 
 
This problem sounds familiar (ping Thomas Hallgren - ring any bells?) - I wonder if this is fixed already for puppet 5. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8123) Upper Case in class names is not working correctly

2017-11-03 Thread Martin Ewings (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Martin Ewings created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8123 
 
 
 
  Upper Case in class names is not working correctly  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PUP 5.3.2, PUP 4.10.0 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2017/11/03 7:24 AM 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Martin Ewings 
 
 
 
 
 
 
 
 
 
 
Since 4.10, upper case chars have been allowed in classnames so long as they match the following regex: 
\A[a-z][a-z0-9_]*\Z 
the only stipulation on case is that the class must start with a lowercase letter, see the documentation below: https://puppet.com/docs/puppet/4.10/lang_reserved.html#classes-and-defined-resource-types 
However in testing, i have modified the service class within the puppetlabs-ntp module, including filename and all class calls and declarations to ntp::serVice, when applying the init.pp example in this module i am presented with: 
 
 
 
 
 
 
Error: Evaluation Error: Error while evaluating a Function Call, Could not find class ::ntp::service for hoytrc at /etc/puppetlabs/code/environments/production/modules/ntp/manifests/init.pp:132:3 on node hoytrc
 
 
 
 

Jira (BOLT-116) Consider the contents and format of a possible bolt.conf

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  BOLT-116 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Consider the contents and format of a possible bolt.conf  
 
 
 
 
 
 
 
 
 
 
bolt already depends on puppet (currently ships with a special configuration of it), and puppet now contains hiera 5 (a completely new implementation where the hiera gem is only needed if using hiera 3 backends; which bolt does not need to support). 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8067) Selector expression ignored in some scenarios

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg assigned an issue to Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8067 
 
 
 
  Selector _expression_ ignored in some scenarios  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Assignee:
 
 Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8070) cannot extract partial result from errors in plans

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8070 
 
 
 
  cannot extract partial result from errors in plans  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Assignee:
 
 Thomas Hallgren 
 
 
 

Release Notes Summary:
 
 It was not possible to access the attributes of an {{Error}} object. This is now fixed. 
 
 
 

Release Notes:
 
 Bug Fix 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8070) cannot extract partial result from errors in plans

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-8070 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: cannot extract partial result from errors in plans  
 
 
 
 
 
 
 
 
 
 
The reported problems were caused by not being able to call methods on the error object to get the attributes. That in turn was caused by having to make Error a special type since its data type Error needed to be parameterized (with kind, and issue code) and it was not possible to use the implementation of Object (which supports all of the other wanted traits) since Object did not support parameterized sub data types. 
Now when the ability to specify data type parameters when defining a sub type of Object, and the Error data type is changed to be derived from the puppet Object data type, the problem reported here does not longer occur. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8117) It should be possible to parameterize Boolean with either true or false

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8117 
 
 
 
  It should be possible to parameterize Boolean with either true or false  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Component/s:
 
 DOCS 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8117) It should be possible to parameterize Boolean with either true or false

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8117 
 
 
 
  It should be possible to parameterize Boolean with either true or false  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Release Notes Summary:
 
 It is now possible to parameterize the {{Boolean}} data type with either {{false}} or {{true}} to limit the set of booleans to those that have that value.  As an example, {{Boolean\[false]}} only matches the value {{false}}. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8117) It should be possible to parameterize Boolean with either true or false

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8117 
 
 
 
  It should be possible to parameterize Boolean with either true or false  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Assignee:
 
 Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8119) Add a boolean "case independent" flag to the Enum type

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8119 
 
 
 
  Add a boolean "case independent" flag to the Enum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Component/s:
 
 DOCS 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8119) Add a boolean "case independent" flag to the Enum type

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8119 
 
 
 
  Add a boolean "case independent" flag to the Enum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Release Notes Summary:
 
 It is now possible to create a "case independent" {{Enum}} data type by adding a boolean {{true}} last in the list of enum string values. This was earlier difficult to achieve and required use of regular expressions.  This example now results in true {{"bAnAnA" =~ Enum\['banana', 'apple', true]}}. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8119) Add a boolean "case independent" flag to the Enum type

2017-11-03 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8119 
 
 
 
  Add a boolean "case independent" flag to the Enum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Assignee:
 
 Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8117) It should be possible to parameterize Boolean with either true or false

2017-11-03 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren assigned an issue to Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8117 
 
 
 
  It should be possible to parameterize Boolean with either true or false  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Assignee:
 
 Thomas Hallgren Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8121) Init[T] close to unusuable due to relaxed signatures in several core data types

2017-11-03 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8121 
 
 
 
  Init[T] close to unusuable due to relaxed signatures in several core data types  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Story Points:
 
 2 
 
 
 

Sprint:
 
 Platform Core KANBAN 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-8119) Add a boolean "case independent" flag to the Enum type

2017-11-03 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren assigned an issue to Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Puppet /  PUP-8119 
 
 
 
  Add a boolean "case independent" flag to the Enum type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Assignee:
 
 Thomas Hallgren Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v7.0.2#70111-sha1:88534db) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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