Jira (PUP-686) --detailed-exit-codes not honored when --noop is used

2014-12-05 Thread Gareth Rushgrove (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Gareth Rushgrove commented on  PUP-686 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: --detailed-exit-codes not honored when --noop is used  
 
 
 
 
 
 
 
 
 
 
With regards whether this is the right thing to do, I wanted to do this just a few days ago. 
My usecase was using noop for auditing, watching for changes and throwing an error if any where found. 
I found the existing experience surprising. 
I ended up doing something horrible with --lastrunfile, --postrun_command and this shell script: 
https://github.com/puppetlabs/puppetlabs-aws/blob/master/examples/audit-security-groups/count_out_of_sync_resources.sh 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (HI-296) hiera merging: remove values when :merge_behavior is set to deeper

2014-12-05 Thread Andreas Papst (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Andreas Papst updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Hiera /  HI-296 
 
 
 
  hiera merging: remove values when :merge_behavior is set to deeper  
 
 
 
 
 
 
 
 
 

Change By:
 
 Andreas Papst 
 
 
 

Attachment:
 
 backend.rb.patch 
 
 
 

Attachment:
 
 backend.rb.example 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (HI-296) hiera merging: remove values when :merge_behavior is set to deeper

2014-12-05 Thread Andreas Papst (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Andreas Papst updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Hiera /  HI-296 
 
 
 
  hiera merging: remove values when :merge_behavior is set to deeper  
 
 
 
 
 
 
 
 
 

Change By:
 
 Andreas Papst 
 
 
 
 
 
 
 
 
 
 Aim:WithdeepermergingofHieradefinedhashesitshouldbepossibletoremovepreviouslydefinedhash-values.Thistinypatchfulfillsthisimposition:Patch/usr/lib/ruby/vendor_ruby/hiera/backend.rbwith--- {noformat} ---orig/backend.rb+++improvement/backend.rb@@-173,6+173,16@@#:deeper=UseHash.deep_merge!#defmerge_answer(left,right)+ifConfig[:merge_exclude_string]+caseConfig[:merge_behavior]+when:deeper,'deeper'+left.deep_merge!(right,{:knockout_prefix=Config[:merge_exclude_string]})+when:deep,'deep'+left.deep_merge(right,{:knockout_prefix=Config[:merge_exclude_string]})+else#Nativeandundefined+left.merge(right)+end+elsecaseConfig[:merge_behavior]when:deeper,'deeper'left.deep_merge!(right)@@-181,6+191,7@@else#Nativeandundefinedleft.merge(right)end+endend#Callsouttoallconfiguredbackendsintheorderthey {noformat} ---(Pleasebegenerous,thesearemyfirstlinesrubycode)Thusanewhiera.yamlkeyisintroduced::merge_exclude_stringIt'svalueisusedasforoption:knockout_prefixintheunderlyingrubymoduledeep_merge(https://github.com/danielsdeleo/deep_merge)toremovearrayentriesandhashvalues.Usageof:merge_exclude_stringinthehashtobemerged:./Ahashvalueprefixedwith:merge_exclude_stringwillbecomeanemptystring./The:merge_exclude_stringusedaloneresultsinanemptystringashashvalue,allvaluesdefinedpreviouslywillbecomedeleted../Anarraymemberprefixedwith:merge_exclude_stringwillberemovedfromthearray../The:merge_exclude_stringusedaloneasanarraymemberwillgiveanemptyarray../Anyvalueorarray-memberprefixedwith:merge_exclude_stringwillnotbeincludedevenifitwasnotdefinedpreviously../Mergingdifferenttypesofvalueswillcausethedeletionofthepreviouslydefinedvalueasitwasbefore.Example:/tmp/hieradata/hiera.yaml:-- {noformat} ---:backends:-yaml:yaml::datadir:/tmp/hieradata:hierarchy:-replace-common:merge_behavior:deeper:merge_exclude_string:'--' {noformat} --/tmp/hieradata/common.yaml:-- {noformat} ---K:KA:KA1:valA1KA2:valA2KA3:valA3KA4:valA4KB:KB1:valB1KB2:to_be_removed_valB2KB3:valB3KB4:valB4KC:KC1:valC1KC2:valC2KC3:valC3KC4:valC4KD:KD1:-array_member_D1-array_member_D2-array_member_D3-array_member_D4KE:KE1:-array_member_E1-to_be_removed_array_member_E2-array_member_E3-array_member_E4KF:KF1:-all_to_be_removed_array_member_F1-all_to_be_removed_array_member_F2-all_to_be_removed_array_member_F3-all_to_be_removed_array_member_F4KG:KG1:-all_to_be_removed_array_member_G1-all_to_be_removed_array_member_G2-all_to_be_removed_array_member_G3-all_to_be_removed_array_member_G4KH:KH1:-all_to_be_removed_array_member_H1-all_to_be_removed_array_member_H2-all_to_be_removed_array_member_H3-all_to_be_removed_array_member_H4 {noformat} --/tmp/hieradata/replace.yaml:-- {noformat} 

Jira (HI-296) hiera merging: remove values when :merge_behavior is set to deeper

2014-12-05 Thread Andreas Papst (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Andreas Papst commented on  HI-296 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: hiera merging: remove values when :merge_behavior is set to deeper  
 
 
 
 
 
 
 
 
 
 
Hi Rob, 
I hope this meets your requirements now. 
best wishes 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-1916) puppet cert clean cannot remove signing requests

2014-12-05 Thread JIRA
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Markus Hll commented on  PUP-1916 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: puppet cert clean cannot remove signing requests  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
root@puppet:~# cat /etc/issue 
 
 
 
 
Debian GNU/Linux 7 \n \l 
 
 
 
 
root@puppet:~# uname -a 
 
 
 
 
Linux puppet 3.2.0-4-amd64 #1 SMP Debian 3.2.63-2 x86_64 GNU/Linux 
 
 
 
 
root@puppet:~# puppet --version 
 
 
 
 
3.7.3 
 
 
 
 
 
 
 
 
 
root@puppet:~# puppet cert list 
 
 
 
 
  asterix.dummy  (SHA256) 6B:FA:93:6B:B3:6E:2A:08:E1:37:B4:41:CB:47:5E:27:72:B5:DA:BA:B3:6A:7A:5E:CC:CF:9F:44:0E:74:1A:41 
 
 
 
 
  fire.dummy (SHA256) 74:7E:DB:BF:C4:F6:71:00:62:ED:EF:99:4B:76:B4:9D:1E:A0:91:0B:63:CD:29:2B:AF:BD:B3:6F:B3:31:14:3A 
 
 
 
 

Jira (PUP-1916) puppet cert clean cannot remove signing requests

2014-12-05 Thread Jeremy T. Bouse (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jeremy T. Bouse commented on  PUP-1916 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: puppet cert clean cannot remove signing requests  
 
 
 
 
 
 
 
 
 
 
Yeah, later discovery during #puppethack found that it would clean the CSR if and only if there had ever been a key signed for that hostname in the past so that it was listed in the CA inventory.txt. One comment made in the channel was that there was no good programmatic way to do it. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-1916) puppet cert clean cannot remove signing requests

2014-12-05 Thread Jeremy T. Bouse (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jeremy T. Bouse commented on  PUP-1916 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: puppet cert clean cannot remove signing requests  
 
 
 
 
 
 
 
 
 
 
Yeah, later discovery during #puppethack found that it would clean the CSR if and only if there had ever been a key signed for that hostname in the past so that it was listed in the CA inventory.txt. One comment made in the channel was that there was no good programmatic way to do it. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1042) PR (1163): Fixes needed for running tests against puppet's master branch - senior

2014-12-05 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot commented on  PDB-1042 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: PR (1163): Fixes needed for running tests against puppet's master branch - senior  
 
 
 
 
 
 
 
 
 
 
Pull request Fixes needed for running tests against puppet's master branch has been closed. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-1916) puppet cert clean cannot remove signing requests

2014-12-05 Thread JIRA
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Markus Hll updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-1916 
 
 
 
  puppet cert clean cannot remove signing requests  
 
 
 
 
 
 
 
 
 

Change By:
 
 Markus Hll 
 
 
 

Environment:
 
 PuppetonCentOS6(viapuppetlabsrepo) ,PuppetonDebian7(viapuppetlabsrepo) 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3743) Parser should report invalid operand types when possible

2014-12-05 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3743 
 
 
 
  Parser should report invalid operand types when possible  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 5:20 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Thomas Hallgren 
 
 
 
 
 
 
 
 
 
 
The parser should be improved to detect expressions that cannot evaluate to numeric values and report when they are used as LHS or RHS in binary expressions where the operator stipulates a numeric type. Right now, this is parsed with no error: 
 
 
 
 
 
 
class foobar { 
 
 
 
 
  $x = $::os ? { 
 
 
 
 
Ubuntu  = 'upstart', 
 
 
 
 
(CentOS/RedHat) = 'init', 
 
 
 

Jira (PUP-3743) Parser should report invalid operand types when possible

2014-12-05 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3743 
 
 
 
  Parser should report invalid operand types when possible  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 
 
 
 
 
 
 
 TheparsershouldbeimprovedtodetectexpressionsthatcannotevaluatetonumericvaluesandreportwhentheyareusedasLHSorRHSinbinaryexpressionswheretheoperatorstipulatesanumerictype.Rightnow,thisisparsedwithnoerror:{noformat}classfoobar{$x=$::os?{Ubuntu='upstart',(CentOS/RedHat)='init',default=fail('OSnotsupported')}}{noformat}Inversionspriorto4.0CentOSandRedHatarestrings .Inversions =4.0theyaretypes.NeithercanbeusedasLHSorRHSofoperator'/'. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1052) Puppet 4: Terminus Environment related rspec testing failures

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1052 
 
 
 
  Puppet 4: Terminus  Environment related rspec testing failures  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 5:32 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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

Jira (PDB-1052) Puppet 4: Terminus Environment related rspec testing failures

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1052 
 
 
 
  Puppet 4: Terminus  Environment related rspec testing failures  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Story Points:
 
 3 
 
 
 

Affects Version/s:
 
 PDB2.2.2 
 
 
 

Fix Version/s:
 
 PDB2.2.x 
 
 
 
 
 
 
 
 
 
 

Jira (PDB-1053) PDB Puppet 4 Breaking changes

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1053 
 
 
 
  PDB Puppet 4 Breaking changes  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 5:35 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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

Jira (PDB-1053) PDB Puppet 4 Breaking changes

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1053 
 
 
 
  PDB Puppet 4 Breaking changes  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB Puppet4Breakingchanges 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1050) PuppetDB i18n Phase 1

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1050 
 
 
 
  PuppetDB i18n Phase 1  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB i18nPhase1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-751) Support Access Control Lists in PuppetDB

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-751 
 
 
 
  Support Access Control Lists in PuppetDB  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB ACL'sandSecurity 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1053) PDB Puppet 4 Breaking changes

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1053 
 
 
 
  PDB Puppet 4 Breaking changes  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB Puppet4Breakingchanges 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1050) PuppetDB i18n Phase 1

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1050 
 
 
 
  PuppetDB i18n Phase 1  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB i18nPhase1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-51) High availability improvements

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-51 
 
 
 
  High availability improvements  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB HighAvailability 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-433) FOSS Platform Support

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-433 
 
 
 
  FOSS Platform Support  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Status:
 
 ToDo Done 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3744) Function to dig out allowed values for an attribute of a type

2014-12-05 Thread Daniele Sluijters (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniele Sluijters created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3744 
 
 
 
  Function to dig out allowed values for an attribute of a type  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 
 Henrik Lindberg 
 
 
 

Created:
 

 2014/12/05 5:38 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Daniele Sluijters 
 
 
 
 
 
 
 
 
 
 
What I want to be able to do is ask a type what the allowed values for one of its attributes is, if of course that has been specified in the type. 
The reason for doing so is that this can then be used to construct a type definition to be used as an annotation in the future parser: 
Consider a defined type which wraps around a file: 
 
 
 
 
 
 
define my_file * 
 
 
 
 
  $ensure =  'file', 
 
 
 
 
) {}
 
 
 
 
 
 
 
 

Jira (PUP-3744) Function to dig out allowed values for an attribute of a type

2014-12-05 Thread Daniele Sluijters (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniele Sluijters updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3744 
 
 
 
  Function to dig out allowed values for an attribute of a type  
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniele Sluijters 
 
 
 
 
 
 
 
 
 
 WhatIwanttobeabletodoisaskatypewhattheallowedvaluesforoneofitsattributesis,ifofcoursethathasbeenspecifiedinthetype.Thereasonfordoingsoisthatthiscanthenbeusedtoconstructatypedefinitiontobeusedasanannotationinthefutureparser:Consideradefinedtypewhichwrapsaroundafile:{code}definemy_file*$ensure='file',){}{code}NowIneedtomanuallyvalidatethevaluesfor{{$ensure}}butIknowwhattheyshouldbe,thesameasfile's{{ensure}}values.InsteaditwouldmakesensetobeabletosayIacceptallvaluesthatthisattributeofthattypeaccepts.{code}typemy_type=attribute_type(File,'ensure')//thisreturnsanEnumorothertypedefinitiondefinemy_file(My_type$ensure,){}{code}Itwouldalsobeprettyneatifthebuilt-intypeswouldallemittypesnamedalongthelinesofType_attributethatcanbeusedasis . soinsteadwecouldgo:{code}definemy_file(File_ensure$ensure,){}{code} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1054) PDB Version 3 Retirements

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1054 
 
 
 
  PDB Version 3 Retirements  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 5:42 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1055) PDB Version 4 retirements

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1055 
 
 
 
  PDB Version 4 retirements  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 5:44 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1005) regex operator does not work in abbreviated subqueries against trusted facts

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber commented on  PDB-1005 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: regex operator does not work in abbreviated subqueries against trusted facts  
 
 
 
 
 
 
 
 
 
 
Wyatt Alt can you confirm this is broken or not? And perhaps put in an estimate and an affected/target fix branch etc. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1027) PuppetDB should ship with a simpler query system that directly integrates with Puppet's SSL

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1027 
 
 
 
  PuppetDB should ship with a simpler query system that directly integrates with Puppet's SSL  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Story Points:
 
 5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) (puppetdb) Can't change 'subname' setting in database.ini

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber commented on  PDB-1013 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: (puppetdb) Can't change 'subname' setting in database.ini  
 
 
 
 
 
 
 
 
 
 
Justin Holguin why do you need to do this? At the moment we already automatically populate that field based on what database a user chooses, what other use case are you trying to achieve here? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1016) Race condition in puppetdb init script `restart` action

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1016 
 
 
 
  Race condition in puppetdb init script `restart` action  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Affects Version/s:
 
 PDB2.2.2 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-42) Improving reports

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-42 
 
 
 
  Improving reports  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Epic Name:
 
 PDB Reports 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1036) Create design/estimates around Console reporting needs

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1036 
 
 
 
  Create design/estimates around Console reporting needs  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 Weneedtocreateestimatesonthereportingepicfordashboardretirementsetc. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3745) Group membership should be a type of its own.

2014-12-05 Thread redmine.exporter (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 redmine.exporter created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3745 
 
 
 
  Group membership should be a type of its own.  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 6:16 AM 
 
 
 

Labels:
 

 redmine 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 redmine.exporter 
 
 
 
 
 
 
 
 
 
 
It's very difficult right now to express declarative statements like: 
 

Ensure this user is not in this group, leave it alone otherwise
 

Ensure this user is in this group without defining the user, leave it alone otherwise.
 
 
I propose that we move group membership to a type of its own. That would also allow us to abstract away the differences between different platforms, some of which consider membership to be an attribute of the group, some of which consider it to be an attribute of the user. 
It would allow us to remove all the authoritative settings for user/group membership, as they would move to this type instead. 
 
 
 
 
 
 
 
 
 
 

Jira (PUP-927) puppet apply on Windows always uses *nix style newlines from templates

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-927 
 
 
 
  puppet apply on Windows always uses *nix style newlines from templates  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Reynolds 
 
 
 

Component/s:
 
 PE 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1056) PuppetDB incorrectly converts booleans as fact values when using HSQL

2014-12-05 Thread Ryan Senior (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ryan Senior created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1056 
 
 
 
  PuppetDB incorrectly converts booleans as fact values when using HSQL  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PDB 2.2.2 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 8:01 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Ryan Senior 
 
 
 
 
 
 
 
 
 
 
In doing some generative testing against the Clojure codebase, I found a bug when posting the following replace-facts command: {pre} {\command\:\replace facts\,\version\:3,\payload\:{\producer-timestamp\:\2004-12-06T21:37:56.680Z\,\name\:\c1OY29yhOLu1p9.0H\,\values\:{\y\:false},\environment\:\lgDyu5KrAFS6Siz\,\timestamp\:\2004-12-06T21:37:56.680Z\}}{pre} 
The response converts the boolean false to a string, then upper cases it: {pre} [ {\n \facts\ : {\n \y\ : \FALSE\\n },\n \producer-timestamp\ : \2004-12-06T21:37:56.680Z\,\n \timestamp\ : \2014-12-04T23:30:53.036Z\,\n \environment\ : \lgDyu5KrAFS6Siz\,\n \certname\ : \c1OY29yhOLu1p9.0H\,\n \hash\ : \af609e2f287d2c68b26710ccc913088074bb734e\\n} ]{pre} 
The response is correct when running against Postgres. 
 
 
 
 
 
 
 
 
 
 
 
 

 
   

Jira (PUP-2899) storing stat() info in filebucket for items

2014-12-05 Thread daniel pecka (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 daniel pecka commented on  PUP-2899 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: storing stat() info in filebucket for items  
 
 
 
 
 
 
 
 
 
 
thanks, I would do it for myself but my ruby programming skill is enough to generate that one-liner .. to integrate it correctly to the puppet code is too much for me  .. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1005) regex operator does not work in abbreviated subqueries against trusted facts

2014-12-05 Thread Wyatt Alt (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Wyatt Alt commented on  PDB-1005 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: regex operator does not work in abbreviated subqueries against trusted facts  
 
 
 
 
 
 
 
 
 
 
Kenneth Barber Andrii Nikitiuk this issue is specific to trusted facts. The broken query pasted in the ticket description still appears broken to me. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1005) regex operator does not work in abbreviated subqueries against trusted facts

2014-12-05 Thread Wyatt Alt (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Wyatt Alt updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1005 
 
 
 
  regex operator does not work in abbreviated subqueries against trusted facts  
 
 
 
 
 
 
 
 
 

Change By:
 
 Wyatt Alt 
 
 
 

Story Points:
 
 2 
 
 
 

Affects Version/s:
 
 PDB2.2.2 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3743) Parser should report invalid operand types when possible

2014-12-05 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-3743 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Parser should report invalid operand types when possible  
 
 
 
 
 
 
 
 
 
 
To validate things like these (since the operands are expressions) means we have to add more (performance) expensive validations (while type inference is not required to detect the problem in the example, it would be needed for anything beyond static/literals). In any case an error is raised at runtime for the expressions in the example. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson assigned an issue to Eric Thompson 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3268 
 
 
 
  Remove non-directory environment support  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

Assignee:
 
 EricThompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3389) Significant delay in puppet runs with growing numbers of directory environments

2014-12-05 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-3389 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Significant delay in puppet runs with growing numbers of directory environments  
 
 
 
 
 
 
 
 
 
 
merged to master 04b5bc9 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-991) Dujour needs updating to latest, but latest package is broken

2014-12-05 Thread AJ Roetker (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 AJ Roetker assigned an issue to AJ Roetker 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-991 
 
 
 
  Dujour needs updating to latest, but latest package is broken  
 
 
 
 
 
 
 
 
 

Change By:
 
 AJ Roetker 
 
 
 

Assignee:
 
 AJRoetker 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-775) Retire pre 9.2 postgresql databases

2014-12-05 Thread AJ Roetker (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 AJ Roetker assigned an issue to AJ Roetker 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-775 
 
 
 
  Retire pre 9.2 postgresql databases  
 
 
 
 
 
 
 
 
 

Change By:
 
 AJ Roetker 
 
 
 

Assignee:
 
 AJRoetker 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) (puppetdb) Can't change 'subname' setting in database.ini

2014-12-05 Thread Justin Holguin (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Justin Holguin commented on  PDB-1013 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: (puppetdb) Can't change 'subname' setting in database.ini  
 
 
 
 
 
 
 
 
 
 
Kenneth Barber this all started with me trying to document using SSL between PDB and Postgres for DOC-145/PDB-765. It's been four months now so I don't quite remember all the details, but the problem I was running into is at the bottom of my notes. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3741) Puppet certificate reovke issue on Puppetmaster.

2014-12-05 Thread jennifer kim (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 jennifer kim assigned an issue to jennifer kim 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3741 
 
 
 
  Puppet certificate reovke issue on Puppetmaster.  
 
 
 
 
 
 
 
 
 

Change By:
 
 jennifer kim 
 
 
 

Assignee:
 
 AndyParker jenniferkim 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3741) Puppet certificate reovke issue on Puppetmaster.

2014-12-05 Thread jennifer kim (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 jennifer kim updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3741 
 
 
 
  Puppet certificate reovke issue on Puppetmaster.  
 
 
 
 
 
 
 
 
 

Change By:
 
 jennifer kim 
 
 
 

Assignee:
 
 jenniferkim AndyParker 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3560) Add support for properly signed trusted facts

2014-12-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper assigned an issue to Josh Cooper 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3560 
 
 
 
  Add support for properly signed trusted facts  
 
 
 
 
 
 
 
 
 

Change By:
 
 Josh Cooper 
 
 
 

Assignee:
 
 JoshCooper 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3741) Puppet certificate reovke issue on Puppetmaster.

2014-12-05 Thread jennifer kim (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 jennifer kim commented on  PUP-3741 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Puppet certificate reovke issue on Puppetmaster.  
 
 
 
 
 
 
 
 
 
 
One more question please.. 
In the below situation, do puppet master revoke the agent's old certificate or do not do work anything for the agent as a default? 
1. Agent's certificate expire date remains 2. Agents puppet delete /var/lib/puppet/ssl and regenerate certificate. 
I really want to know the default setting of revoking certificate on puppet master first. 
Any updates are appreciated!! 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
no empty environmentpath settings verified: rhel7 at SHA:  
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# cat /etc/puppet/puppet.conf 
 
 
 
 
[main] 
 
 
 
 
environmentpath= 
 
 
 
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# puppet master 
 
 
 
 
Error: Could not initialize global default settings: The environmentpath setting cannot be empty or nil. 
 
 
 
 
 
 
 
 
 
[root@kafeq06utkb295l puppet]# cat puppet.conf 
 
 
 
 
[main] 
 
 
 
 
environmentpath 
 
 
 
 

Jira (PDB-1013) (puppetdb) Can't change 'subname' setting in database.ini

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber commented on  PDB-1013 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: (puppetdb) Can't change 'subname' setting in database.ini  
 
 
 
 
 
 
 
 
 
 
Justin Holguin oh that makes sense. Maybe ... the requirement here is more global like 'make puppetdb module support talking to postgresql via SSL'. That way, we're no longer talking about downstream bugs in this effort, but more of a 'lets add a new feature' and the problems that block this will be fixed in turn. 
That is, adding SSL setup should almost be turnkey, flick a few options and postgresql  puppetdb are talking SSL. Then the documentation becomes minimal? 
So maybe we just make this a new feature ticket, change the topic and description to be more about 'Module: making puppetdb  postgresql talk via SSL' and then scope it around that. Any documentation changes to the module and our docs would be part of this effort I would imagine. What do you think? 
Otherwise, or alternatively, if you believe this to be the only work stopping someone shipping some decent documentation for this then maybe we keep it as it is. I really don't know where your work ended up, or if its hard blocking on this and thats the only thing stopping someone from raising a PR? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
it still doesn't care if there is no environmentpath directory: but it needs a modules directory to pluginsync (nothing) 
 
 
 
 
 
 
[root@kafeq06utkb295l puppet]# puppet agent -t 
 
 
 
 
Info: Retrieving pluginfacts 
 
 
 
 
Error: /File[/var/lib/puppet/facts.d]: Could not evaluate: Could not retrieve information from environment production source(s) puppet:///pluginfacts 
 
 
 
 
Info: Retrieving plugin 
 
 
 
 
Error: /File[/var/lib/puppet/lib]: Could not evaluate: Could not retrieve information from environment production source(s) puppet:///plugins 
 
 
 
 
Info: Caching catalog for kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
Info: Applying configuration version '1417805015' 
 
 
 
 
Notice: Applied catalog in 0.02 seconds 
 
 
 
 
 
 
 
 
 
   

Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
manifestdir doesn't complain but doesn't do anything: 
 
 
 
 
 
 
[root@kafeq06utkb295l puppet]# cat `puppet master --configprint pidfile` | xargs kill -9 
 
 
 
 
[root@kafeq06utkb295l puppet]# puppet master 
 
 
 
 
[root@kafeq06utkb295l puppet]# puppet agent -t 
 
 
 
 
Info: Retrieving pluginfacts 
 
 
 
 
Info: Retrieving plugin 
 
 
 
 
Info: Caching catalog for kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
Info: Applying configuration version '1417805399' 
 
 
 
 
Notice: Applied catalog in 0.01 seconds 
 
 
 
 
[root@kafeq06utkb295l puppet]# cat /etc/puppet/puppet.conf 
 
 
 
 
[master] 
 
 

Jira (PUP-2563) Remove 1.8.7 support in the ruby code base

2014-12-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall assigned an issue to Kurt Wall 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-2563 
 
 
 
  Remove 1.8.7 support in the ruby code base  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

Assignee:
 
 KurtWall 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3389) Significant delay in puppet runs with growing numbers of directory environments

2014-12-05 Thread Joshua Partlow (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Joshua Partlow commented on  PUP-3389 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Significant delay in puppet runs with growing numbers of directory environments  
 
 
 
 
 
 
 
 
 
 
Backported to stable in d29ab95 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-927) puppet apply on Windows always uses *nix style newlines from templates

2014-12-05 Thread James Sweeny (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Sweeny commented on  PUP-927 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: puppet apply on Windows always uses *nix style newlines from templates  
 
 
 
 
 
 
 
 
 
 
Eric Sorenson can you help me understand why this is being dropped for 4.x (or even a 3.x release)? This is a really painful bug when you're working from a Windows workstation. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
templatedir doesn't complain, but doesn't do anything: 
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# puppet apply 
 
 
 
 
anaconda-ks.cfg  .bash_logout .bashrc  .gem/.tcshrc 
 
 
 
 
.bash_history.bash_profile.cshrc   .ssh/test_templatedir.pp 
 
 
 
 
[root@kafeq06utkb295l ~]# puppet apply test_templatedir.pp 
 
 
 
 
Error: Could not find template 'mytemplate.erb' on node kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
Error: Could not find template 'mytemplate.erb' on node kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
[root@kafeq06utkb295l ~]# cat /tmp/mytemplate.erb 
 
 
 
 
bummer 
 
 
 
 
[root@kafeq06utkb295l ~]# cat /etc/puppet/puppet.conf 
 
 
 
 
[master] 
   

Jira (PDB-1013) (puppetdb) Can't change 'subname' setting in database.ini

2014-12-05 Thread Justin Holguin (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Justin Holguin commented on  PDB-1013 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: (puppetdb) Can't change 'subname' setting in database.ini  
 
 
 
 
 
 
 
 
 
 
Kenneth Barber yes, I'd greatly prefer your 'make puppetdb module support talking to postgresql via SSL' idea. As long as it requires a change to the module code (which I'm pretty sure it does), then it might as well be a more comprehensive use_ssl_transport option or something, which would indeed minimize the docs work. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-722) PuppetDB response hanging on select-nodes subquery

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-722 
 
 
 
  PuppetDB response hanging on select-nodes subquery  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Fix Version/s:
 
 PDB3.0.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) Module: postgresql ssl communication should be easily done in the module

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1013 
 
 
 
  Module: postgresql ssl communication should be easily done in the module  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Summary:
 
 (puppetdb)Can'tchange'subname'setting Module:postgresqlsslcommunicationshouldbeeasilydone in database.ini themodule 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) Module: postgresql ssl communication should be easily done in the module

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1013 
 
 
 
  Module: postgresql ssl communication should be easily done in the module  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 
 
 
 
 
 
 
 Currentlythemoduledoesn'tsupportswitchingonPostgreSQLSSLsupportforuserswhowantit.Thistickettracksthechangesrequiredtomakethateasyforusersandsothe$subnamecanbesetautomaticallyasapartofthisalso.Originalreport: I'vemanagedtouseSSLforcommunicationbetweenPuppetDBandPostgres,butIcan'teffectivelymanagethe'subname'settingindatabase.iniwhileusingthepuppetlabs-puppetdbmodule.WhatendsuphappeningisthatI'llchangethesubnamewithmyownini_settingresource,butthenthepuppetdbmodulewillchangeitbackonthenextpuppetrun.Thenmyresourcechangesitagain,andsoitgoesbackandforth.Ilookedthroughthemodulesourceanditdoesn'tlooklikethere'sanyconfigurationoptionIcansettopreventthisbehavior.Here'sa[gistofmyexamplesite.pp|https://gist.github.com/holguinj/8f151921b42b5a2b6321].Edit:here'sanother[gist|https://gist.github.com/holguinj/5022d89360230166fc83]withallthestepsItooktogettowhereIam. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) Module: postgresql ssl communication should be easily done in the module

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber commented on  PDB-1013 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Module: postgresql ssl communication should be easily done in the module  
 
 
 
 
 
 
 
 
 
 
Justin Holguin done. Thanks. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) Module: postgresql ssl communication should be easily done in the module

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1013 
 
 
 
  Module: postgresql ssl communication should be easily done in the module  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Story Points:
 
 13 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1013) Module: postgresql ssl communication should be easily done in the module

2014-12-05 Thread Kenneth Barber (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kenneth Barber updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1013 
 
 
 
  Module: postgresql ssl communication should be easily done in the module  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kenneth Barber 
 
 
 

Issue Type:
 
 Bug NewFeature 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
no other sections in puppet.conf: 
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# cat /etc/puppet/puppet.conf 
 
 
 
 
[main] 
 
 
 
 
[agent] 
 
 
 
 
server=kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
[erict] 
 
 
 
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# puppet agent -t 
 
 
 
 
Error: Could not parse /etc/puppet/puppet.conf: Illegal section 'erict' in config file /etc/puppet/puppet.conf at line 4. The only valid puppet.conf sections are: [main, master, agent, user]. Please use the directory environments feature to specify environments. (See http://docs.puppetlabs.com/puppet/latest/reference/environments.html) 
 
 
 
 
Warning: Unable to fetch my node definition, but the agent run will continue:
 
 
 
 
 
 
 
   

Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
no manifest, modulepath, config_version settings in puppet.conf 
 
 
 
 
 
 
[root@kafeq06utkb295l ~]# cat /etc/puppet/puppet.conf 
 
 
 
 
[main] 
 
 
 
 
manifest=/tmp/site.pp 
 
 
 
 
modulepath=/etc/puppet/modules 
 
 
 
 
config_version=bestever 
 
 
 
 
[agent] 
 
 
 
 
server=kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
[root@kafeq06utkb295l ~]# puppet master 
 
 
 
 
Error: Could not initialize global default settings: Cannot set manifest, modulepath, config_version settings in puppet.conf 
 
 
 
 
[root@kafeq06utkb295l ~]# vi /etc/puppet/puppet.conf 
 
 
 
   

Jira (PDB-885) PR (1087): Add VPC support for acceptance test hosts for PuppetDB - kbarber

2014-12-05 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot commented on  PDB-885 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: PR (1087): Add VPC support for acceptance test hosts for PuppetDB - kbarber  
 
 
 
 
 
 
 
 
 
 
kbarber commented: 
Updated patch since now beaker 2.0.0 has been released, this should work. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-2563) Remove 1.8.7 support in the ruby code base

2014-12-05 Thread Kurt Wall (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kurt Wall assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-2563 
 
 
 
  Remove 1.8.7 support in the ruby code base  
 
 
 
 
 
 
 
 
 

Change By:
 
 Kurt Wall 
 
 
 

Assignee:
 
 KurtWall 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-2563) Remove 1.8.7 support in the ruby code base

2014-12-05 Thread Josh Cooper (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Josh Cooper commented on  PUP-2563 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove 1.8.7 support in the ruby code base  
 
 
 
 
 
 
 
 
 
 
Btw the message Puppet 3.7.3 requires ruby 1.9.3 is because we haven't updated the version string in master yet. So Puppet 3.7.x still works with 1.8.7. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
puppet master still creates production dir if $environmentpath exists: 
 
 
 
 
 
 
[root@kafeq06utkb295l puppet]# ls /etc/puppet/environments/ 
 
 
 
 
[root@kafeq06utkb295l puppet]# puppet master 
 
 
 
 
[root@kafeq06utkb295l puppet]# puppet agent -t 
 
 
 
 
Info: Retrieving pluginfacts 
 
 
 
 
Info: Retrieving plugin 
 
 
 
 
Info: Caching catalog for kafeq06utkb295l.delivery.puppetlabs.net 
 
 
 
 
Info: Applying configuration version '1417807920' 
 
 
 
 
Notice: Applied catalog in 0.01 seconds 
 
 
 
 
[root@kafeq06utkb295l puppet]# mkdir /etc/puppet/environments/production 
 
 
 
 
mkdir: cannot create directory ‘/etc/puppet/environments/production’: File exists
 
 
  

Jira (PUP-3718) defined function does not handle qualified variable names correctly

2014-12-05 Thread Brian Cain (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cain assigned an issue to Brian Cain 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3718 
 
 
 
  defined function does not handle qualified variable names correctly  
 
 
 
 
 
 
 
 
 

Change By:
 
 Brian Cain 
 
 
 

Assignee:
 
 BrianCain 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-400) Manage hidden windows packages

2014-12-05 Thread Nicholas Fagerlund (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nicholas Fagerlund updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-400 
 
 
 
  Manage hidden windows packages  
 
 
 
 
 
 
 
 
 
 
I'm copying over the description from the redmine export, since it has context this ticket was missing.  
 
 
 
 
 
 
 
 
 

Change By:
 
 Nicholas Fagerlund 
 
 
 
 
 
 
 
 
 
 Currently,thewindowspackageproviderexcludeshiddenapplications(thosewhoseSystemComponentregistryvalueissetto1)fromits{{instances}}method(bothexeandmsi).ThisisdonesothatpuppethasparitywithwhatisdisplayedinAdd/RemovePrograms,e.g.{{SQLServer2008R2SP2CommonFiles}}.Butitmeansifyouinstallahiddenapplication,thenpuppetwon'tknowit'sinstalled,andtrytoreinstallitnexttime.Forexample,https://groups.google.com/d/topic/puppet-users/ftvvO51bX1U/discussion 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3746) A collection of tickets that have arisen due to encoding or other issues.

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3746 
 
 
 
  A collection of tickets that have arisen due to encoding or other issues.  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 11:50 AM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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

Jira (PUP-927) puppet apply on Windows always uses *nix style newlines from templates

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-927 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: puppet apply on Windows always uses *nix style newlines from templates  
 
 
 
 
 
 
 
 
 
 
James Sweeny Not being dropped from 4.x, but being untargeted from PUP 4.0.0. It should be picked up by a subsequent 4.x release. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3747) expiry = absent generates invalid useradd command for user resource

2014-12-05 Thread Charlie Sharpsteen (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Charlie Sharpsteen created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3747 
 
 
 
  expiry = absent generates invalid useradd command for user resource  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 PUP 3.7.3 
 
 
 

Assignee:
 
 Kylo Ginsberg 
 
 
 

Components:
 

 Client 
 
 
 

Created:
 

 2014/12/05 1:15 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Charlie Sharpsteen 
 
 
 
 
 
 
 
 
 
 
Example resource: 
 
 
 
 
 
 
user { 'foo': 
 
 
 
 
  ensure = present, 
 
 
 
 
  shell = '/bin/bash', 

Jira (PUP-3746) Non-US Language / Unicode Support for Windows

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3746 
 
 
 
  Non-US Language / Unicode Support for Windows  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Summary:
 
 Non-USLanguage/UnicodeSupportfor Windowsdingorotherissues. Windows 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3746) Non-US Language / Unicode Support for Windowsding or other issues.

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3746 
 
 
 
  Non-US Language / Unicode Support for Windowsding or other issues.  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Summary:
 
 Acollectionofticketsthathavearisenduetoencoding Non-USLanguage/UnicodeSupportforWindowsding orotherissues. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3748) Non-US Language / Unicode Support for Windows

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3748 
 
 
 
  Non-US Language / Unicode Support for Windows  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 Windows 
 
 
 

Created:
 

 2014/12/05 1:34 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are 

Jira (PUP-3749) Non-US Language Support for Windows

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3749 
 
 
 
  Non-US Language Support for Windows  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Epic 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 1:36 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Ethan Brown 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3747) expiry = absent generates invalid useradd command for user resource

2014-12-05 Thread Charlie Sharpsteen (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Charlie Sharpsteen assigned an issue to Charlie Sharpsteen 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3747 
 
 
 
  expiry = absent generates invalid useradd command for user resource  
 
 
 
 
 
 
 
 
 

Change By:
 
 Charlie Sharpsteen 
 
 
 

Assignee:
 
 KyloGinsberg CharlieSharpsteen 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3746) Non-US Language / Unicode Support for Windows

2014-12-05 Thread Ethan Brown (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ethan Brown updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3746 
 
 
 
  Non-US Language / Unicode Support for Windows  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ethan Brown 
 
 
 

Epic Name:
 
 Non-USLanguage/UnicodeSupport forWindows 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Joshua Partlow (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Joshua Partlow commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
Re manifestdir/templatedir, Puppet settings are generally permissive, and won't complain if you add random settings to the ini file. 
The modules directory issue with pluginsync is a little odd. I'm not able to duplicate it; how are your master and agent test nodes set up there, Eric Thompson? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
the static acceptance test just freezes here: 
 
 
 
 
 
 
c9zehtj27lf607i.delivery.puppetlabs.net (lhxctlpnex92ai1.delivery.puppetlabs.net) executed in 0.03 seconds 
 
 
 
 
No tests to run for suite 'pre_suite' 
 
 
 
 
Begin tests/environment/static.rb 
 
 
 
 
 
 
 
 
 
legacy environments 
 
 
 
 
 
 
 
 
 
  * Add group cca4325b-d764-40b5-9f1b-88b254df55f9 for x1f6fo6011km1an.delivery.puppetlabs.net, c9zehtj27lf607i.delivery.puppetlabs.net
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
  

Jira (PDB-1057) PR (156): (maint) Prune dead PE code - ajroetker

2014-12-05 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 PuppetDB /  PDB-1057 
 
 
 
  PR (156): (maint) Prune dead PE code - ajroetker  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2014/12/05 2:08 PM 
 
 
 

Labels:
 

 github module 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 gepetto-bot 
 
 
 
 
 
 
 
 
 
 
(maint) Prune dead PE code 
 

Author: Andrew Roetker 
 

Company: Reed College
 

Github ID: ajroetker
 

Pull Request 156 Discussion
 

Pull Request 156 File Diff
 
 
Pull Request Description 
 
This PR removes some dead PE code that is no longer used to make params a little cleaner. 
 
(webhooks-id: d931ae9f44d00239ae7859b7a9bc332d) 
 
   

Jira (PDB-885) PR (1087): Add VPC support for acceptance test hosts for PuppetDB - kbarber

2014-12-05 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot commented on  PDB-885 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: PR (1087): Add VPC support for acceptance test hosts for PuppetDB - kbarber  
 
 
 
 
 
 
 
 
 
 
pljenkinsro commented: 
Test FAILed. Refer to this link for build results (access rights to CI server needed):  https://jenkins.puppetlabs.com/job/platform_puppetdb_intn-sys_pr/270/ 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PDB-1057) PR (156): (maint) Prune dead PE code - ajroetker

2014-12-05 Thread gepetto-bot (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 gepetto-bot commented on  PDB-1057 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: PR (156): (maint) Prune dead PE code - ajroetker  
 
 
 
 
 
 
 
 
 
 
ajroetker commented: 
@kbarber What do ya think about this? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Joshua Partlow (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Joshua Partlow commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
Eric Thompson Wait, the static acceptance test shouldn't exist anymore in this commit? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3656) Prefetch eats all exceptions, there is no way to fail out.

2014-12-05 Thread Dan Bode (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Dan Bode commented on  PUP-3656 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Prefetch eats all exceptions, there is no way to fail out.  
 
 
 
 
 
 
 
 
 
 
+1 to fixing this. This is pretty much a huge issue for all of the openstack providers. It makes it way to easy to create duplicate resources in openstack when there is api unreliability (it actually makes it pretty difficult to use prefetch with anything that uses the network) 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


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

2014-12-05 Thread Brian Cain (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cain assigned an issue to Brian Cain 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-2904 
 
 
 
  Make string/symbol use consistent in new function API  
 
 
 
 
 
 
 
 
 

Change By:
 
 Brian Cain 
 
 
 

Assignee:
 
 BrianCain 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3718) defined function does not handle qualified variable names correctly

2014-12-05 Thread Brian Cain (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brian Cain updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3718 
 
 
 
  defined function does not handle qualified variable names correctly  
 
 
 
 
 
 
 
 
 

Change By:
 
 Brian Cain 
 
 
 

Assignee:
 
 BrianCain 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3678 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 
 
I just started running into this as well 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3678 
 
 
 
  Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Reynolds 
 
 
 

Affects Version/s:
 
 PUP3.7.3 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3678 
 
 
 
  Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Reynolds 
 
 
 

Affects Version/s:
 
 PUP3.7.3 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3678 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 
 
I'm seeing this with .DS_Store. Which could tend to get annoying.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3678 
 
 
 
  Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 

Change By:
 
 Rob Reynolds 
 
 
 

Fix Version/s:
 
 PUP4.0.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Rob Reynolds (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rob Reynolds commented on  PUP-3678 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 
 
Kylo Ginsberg Joshua Partlow I targeted this at PUP 4.0.0. I think it's something that may be a useful warning but could get really annoying fast. Please feel free to retarget. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Peter Huene (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Peter Huene updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3678 
 
 
 
  Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 

Change By:
 
 Peter Huene 
 
 
 

Component/s:
 
 Community 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3678) Invalid module name .DS_Store error running puppet apply

2014-12-05 Thread Peter Huene (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Peter Huene commented on  PUP-3678 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Invalid module name .DS_Store error running puppet apply  
 
 
 
 
 
 
 
 
 
 
There's an outstanding community PR to address this: https://github.com/puppetlabs/puppet/pull/3318. I have issues with that particular implementation; I also have some comments on refactoring the existing code to make it more consistent in behavior. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-3268 
 
 
 
  Remove non-directory environment support  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Contact:
 
 KurtWall EricThompson 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
i pulled static and dynamic from an older commit. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Joshua Partlow (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Joshua Partlow commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
Oh I got you; you were testing that it didn't work  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





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


Jira (PUP-3268) Remove non-directory environment support

2014-12-05 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-3268 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Remove non-directory environment support  
 
 
 
 
 
 
 
 
 
 
 
Re manifestdir/templatedir, Puppet settings are generally permissive, and won't complain if you add random settings to the ini file. The modules directory issue with pluginsync is a little odd. I'm not able to duplicate it; how are your master and agent test nodes set up there, Eric Thompson?
 
i know it's permissive. some things have errors, was just being consistent in my reporting. empty environmentpath errors, for instance. i've consistently had the modules dir issue since before 3.7.0. i just plop one in $confdir and it doesn't complain about pluginsync. this is git install method from acceptance.  $confdir looks like: 
 
 
 
 
 
 
  [root@kacsgyhi73f9vlx ~]# ls /etc/puppet/ 
 
 
 
 
auth.conf  puppet.conf  ssl
 
 
 
 
 
 
 
if i drop an empty modules dir in there, pluginsync stops complaining 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.3.7#6337-sha1:2ed701e) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you 

  1   2   >