Jira (PDOC-125) JSON: Splitting function signatures into two places is awkward
Title: Message Title Lindsey Smith commented on PDOC-125 Re: JSON: Splitting function signatures into two places is awkward I don't feel like I have a basis for making a recommendation and am willing to accept the consensus choice. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6814) Filebucket fails with recursive backup
Title: Message Title Erik Hansen updated an issue Puppet / PUP-6814 Filebucket fails with recursive backup Change By: Erik Hansen Managing a directory with a deep directory structure and that contains a large file causes an error in AIX 7.1:{code:java}Error: /Stage[main]/Filetest/File[/test]/ensure: change from directory to absent failed: failed to allocate memoryError: Could not run: failed to allocate memory{code}The directory /test in this case contains a deep directory structure as well as a large file, I'm not sure what the threshold for receiving the error is but to reproduce I did this:mkdir -p /test/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/tempcd to above directory and :{noformat}dd if=/dev/urandom of=file.txt bs=1048576 count=100 dd if=/dev/urandom of=file2.txt bs=1048576 count=100{noformat}{noformat}puppet filebucket backup /test{noformat}Then, apply a class from the master containing:{code:puppet}class filetest { file {'/test':ensure => absent,force => true,backup => 'main', }}{code} Additionally, although the puppet run produces an error, the report in the console shows a report with no changes, and no failed changes (green status) Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe)
Jira (PUP-6814) Filebucket fails with recursive backup
Title: Message Title Erik Hansen created an issue Puppet / PUP-6814 Filebucket fails with recursive backup Issue Type: Bug Assignee: Unassigned Created: 2016/10/12 5:24 PM Priority: Normal Reporter: Erik Hansen Managing a directory with a deep directory structure and that contains a large file causes an error in AIX 7.1: Error: /Stage[main]/Filetest/File[/test]/ensure: change from directory to absent failed: failed to allocate memory Error: Could not run: failed to allocate memory The directory /test in this case contains a deep directory structure as well as a large file, I'm not sure what the threshold for receiving the error is but to reproduce I did this: mkdir -p /test/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp/temp
Jira (PUP-6803) puppet run status should be "failed" if there are failed generated resources
Title: Message Title Moses Mendoza assigned an issue to Moses Mendoza Puppet / PUP-6803 puppet run status should be "failed" if there are failed generated resources Change By: Moses Mendoza Assignee: Moses Mendoza Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6803) puppet run status should be "failed" if there are failed generated resources
Title: Message Title Moses Mendoza commented on PUP-6803 Re: puppet run status should be "failed" if there are failed generated resources marking the run status as failed if we failed to generate resources seems to be a reasonable path forward, working on implementation Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6812) Force --disable flag comment
Title: Message Title Henrik Lindberg updated an issue Puppet / PUP-6812 Force --disable flag comment Change By: Henrik Lindberg Team: Agent & Platform Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-5831) Add a Binary type and runtime object
Title: Message Title Eric Thompson commented on PUP-5831 Re: Add a Binary type and runtime object Henrik Lindberg in ruby i can create a byte array such as {{ bcd = [66,67,68].pack("CCC")}} = BCD but i can't do this with an empty array. maybe you meant to create a puppet Binary type using an Array of ints? maybe like this: [root@d985o84d944gf9o ~]# puppet apply -e 'notice (Binary(Array([66,67])))' Notice: Scope(Class[main]): QkM= Notice: Compiled catalog for d985o84d944gf9o.delivery.puppetlabs.net in environment production in 0.07 seconds Notice: Applied catalog in 0.02 seconds [root@d985o84d944gf9o ~]# puppet apply -e 'notice (Binary(Array([])))' Notice: Scope(Class[main]): Notice: Compiled catalog for d985o84d944gf9o.delivery.puppetlabs.net in environment production in 0.07 seconds Notice: Applied catalog in 0.03 seconds
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title Eric Thompson updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: Eric Thompson QA Risk Assessment: Low Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title Eric Thompson updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: Eric Thompson QA Status: Reviewed Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-127) Hanging indent isn't stripped for resource feature descriptions
Title: Message Title Eric Thompson updated an issue Puppet Strings / PDOC-127 Hanging indent isn't stripped for resource feature descriptions Change By: Eric Thompson QA Highest Test Level: Unit Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-127) Hanging indent isn't stripped for resource feature descriptions
Title: Message Title Eric Thompson updated an issue Puppet Strings / PDOC-127 Hanging indent isn't stripped for resource feature descriptions Change By: Eric Thompson QA Risk Assessment: Low Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-120) Generated _index.html page is not accessible on github.io
Title: Message Title Henrik Lindberg commented on PDOC-120 Re: Generated _index.html page is not accessible on github.io ok - the use of jekyll in combination with strings output is not really needed. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-125) JSON: Splitting function signatures into two places is awkward
Title: Message Title Nicholas Fagerlund commented on PDOC-125 Re: JSON: Splitting function signatures into two places is awkward I think our options are: As a top-level key ("signatures" maybe) in the function object. As a key ("signatures") in the "docstring" object. As an object in the "docstring.tags" object ("tag_name":"signatures", "signatures":, or something like that). As a group of "overload" objects in the docstring.tags object (i.e. we just move the existing top-level "signature" key to an overload object). I dislike options 3 and 4, but can easily live with them if there's a good argument for going that way. I think 1 and 2 are basically equivalent. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6804) Change from symlink to regular file produces strange results
Title: Message Title Michael Smith updated an issue Puppet / PUP-6804 Change from symlink to regular file produces strange results Change By: Michael Smith Team: Agent & Platform Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDB-3097) Decide how/if we want to detect cmd deferrals during end-to-end-test sync calls
Title: Message Title Rob Browning created an issue PuppetDB / PDB-3097 Decide how/if we want to detect cmd deferrals during end-to-end-test sync calls Issue Type: Improvement Assignee: Unassigned Created: 2016/10/12 3:51 PM Labels: maintenance Priority: Normal Reporter: Rob Browning Right now sync calls trigger-sync which ends up in blocking-sync, which will just enqueue any message that fails the fast retrys, without reporting any errors. Decide if we want those deferrals to be an error, and assuming so, arrange fort that to happen. The fact that this involves multiple puppetdb instances in the same jvm, and that the code is called by the server indirectly, complicates things. Add Comment
Jira (FACT-1515) Facter does not respect the configuration file and still attempts to collect facts
Title: Message Title Michael Smith commented on FACT-1515 Re: Facter does not respect the configuration file and still attempts to collect facts FACT-718 , which introduced this feature, is scheduled for Facter 3.5.0 and has not been released yet. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-120) Generated _index.html page is not accessible on github.io
Title: Message Title Peter Huene commented on PDOC-120 Re: Generated _index.html page is not accessible on github.io _index.html comes essentially hardcoded into a base YARD template; afaik it would require a lot of work to change its name. Our best option is probably a .nojekyll or some other configuration to have it serve the file (ideally having YARD do this automatically...or use a different file name). Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-120) Generated _index.html page is not accessible on github.io
Title: Message Title William Hopper commented on PDOC-120 Re: Generated _index.html page is not accessible on github.io Sadly, the usage of _index.html is thoroughly baked into YARD itself, and as far as I can tell is not configurable. I'm considering filing a request with them to make that configurable, and short term adding an exception to our own _config.yml to publish the file without turning off jekyll. Thoughts? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-125) JSON: Splitting function signatures into two places is awkward
Title: Message Title Lindsey Smith commented on PDOC-125 Re: JSON: Splitting function signatures into two places is awkward In the interest of getting to a decision, it sounds like we're comfortable with changing the behavior from YARD. If that's true and I understand correctly, the remaining question is where we want the signature(s) to be nested within the JSON? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6801) agent_specified_environment fact doesn't populate with the environment setting in the [agent] section
Title: Message Title Michael Smith commented on PUP-6801 Re: agent_specified_environment fact doesn't populate with the environment setting in the [agent] section This is governed by https://github.com/puppetlabs/puppet/blob/master/lib/puppet/settings.rb#L833-L842, which should pick up the preferred run mode. Are you using puppet apply or puppet agent? For puppet apply, the run mode is user. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDB-3083) After the relevant stockpile release, handle new create/store error cases
Title: Message Title Rob Browning assigned an issue to Rob Browning PuppetDB / PDB-3083 After the relevant stockpile release, handle new create/store error cases Change By: Rob Browning Assignee: Rob Browning Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) Update README to explain: What's the deal with @example tags?
Title: Message Title William Hopper commented on PDOC-128 Re: Update README to explain: What's the deal with @example tags? Nicholas Fagerlund I opened https://github.com/puppetlabs/puppet-strings/pull/114 and filed https://tickets.puppetlabs.com/browse/DOC-2970. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6538) deprecate hiera_xxx functions (in favour of lookup)
Title: Message Title Henrik Lindberg commented on PUP-6538 Re: deprecate hiera_xxx functions (in favour of lookup) Sure in the past the link via google links was to a ticket initially, Docs then modified the redirect to point to actual documentation when it was ready and organized - at least that was the idea (and how i thought that was supposed to work). The link put into code needs to be free of version consideration - it is a particular deprecation that was released in one version, and someday it will go away simply by being removed from code. The deprecations will show up for users that work with unreleased code. They need to be able to get information before the release (so they can fix their deprecated constructs), and this may be before docs are ready, organized and available on the docs site. I just want the process around this to be as easy as possible and requiring as little back and forth between docs and engineering. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-98) Puppet strings potential future work
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-98 Puppet strings potential future work Change By: Lindsey Smith Summary: Puppet strings for the Docs team potential future work Epic Name: Puppet string and Docs team strings potential future work Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6813) module face: `install` should report back on which dependencies were not satisfiable
Title: Message Title Trevor Vaughan commented on PUP-6813 Re: module face: `install` should report back on which dependencies were not satisfiable The original way :-D. {puppet module install --environment=} Also, when r10k and CM don't do what you expect, this is how you see if it's a problem with the Forge call, or something else. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title Nicholas Fagerlund commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings I agree with Peter! Interpolation is not desirable here, and treating it as raw text is an excellent fallback when we encounter it. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6813) module face: `install` should report back on which dependencies were not satisfiable
Title: Message Title Lindsey Smith commented on PUP-6813 Re: module face: `install` should report back on which dependencies were not satisfiable Trevor Vaughan in what context are you using puppet module install rather than r10k/code manager? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-100) Strings 1.0 release
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-100 Strings 1.0 release Change By: Lindsey Smith Comment: Whoops, we duplicated this with PDOC-107. I already made a bunch of subtasks over there so closing this one :) Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-103) Potential future puppet strings work
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-103 Potential future puppet strings work Change By: Lindsey Smith Epic Status: To Do Done Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) Update README to explain: What's the deal with @example tags?
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-128 Update README to explain: What's the deal with @example tags? Change By: William Hopper Story Points: 1 Sprint: PDS 2016-10-19 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-105) Strings docs on docs.puppet.com
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-105 Strings docs on docs.puppet.com Change By: Lindsey Smith Team: Puppet Developer Support Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) Update README to explain: What's the deal with @example tags?
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-128 Update README to explain: What's the deal with @example tags? Change By: William Hopper Summary: Update README to explain: What's the deal with @example tags? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) Update README to explain: What's the deal with @example tags?
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-128 Update README to explain: What's the deal with @example tags? Change By: William Hopper Team: Puppet Developer Support Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-104) Puppet strings as a Service
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-104 Puppet strings as a Service Change By: Lindsey Smith Team: Puppet Developer Support Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) Update README to explain: What's the deal with @example tags?
Title: Message Title William Hopper assigned an issue to William Hopper Puppet Strings / PDOC-128 Update README to explain: What's the deal with @example tags? Change By: William Hopper Assignee: William Hopper Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-100) Strings 1.0 release
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-100 Strings 1.0 release Change By: Lindsey Smith Fix Version/s: PDOC 1.0.0 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-100) Strings 1.0 release
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-100 Strings 1.0 release Change By: Lindsey Smith Summary: Strings 0 1 . 99 0 release Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-100) Strings 0.99 release
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-100 Strings 0.99 release Change By: Lindsey Smith The things that need to be done to release the 0 1 . 99 0 version of puppet strings beyond completing PDOC-97. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-100) Strings 1.0 release
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-100 Strings 1.0 release Change By: Lindsey Smith Epic Name: Strings 0 1 . 99 0 release Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-97) Initial increment for puppet strings and docs workflow
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-97 Initial increment for puppet strings and docs workflow Change By: Lindsey Smith Epic Status: To Do Done Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-97) Initial increment for puppet strings and docs workflow
Title: Message Title Lindsey Smith updated an issue Puppet Strings / PDOC-97 Initial increment for puppet strings and docs workflow Change By: Lindsey Smith Fix Version/s: PDOC 1.0.0 Fix Version/s: PDOC 0.99.0 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-124) JSON: Inconsistent naming of function parameters
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-124 JSON: Inconsistent naming of function parameters Change By: William Hopper Fix Version/s: PDOC 1.0.0 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-126 Ruby quoting constructs are incompletely stripped from some docstrings Change By: William Hopper Fix Version/s: PDOC 1.0.0 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) What's the deal with @example tags?
Title: Message Title Nicholas Fagerlund commented on PDOC-128 Re: What's the deal with @example tags? Yeah! An update to the README plus a PUP or DOC ticket for the needed edits sounds like a fine resolution to this. What I'd like to know from the README: How much indentation should one use? I'm noticing 2 spaces above; is that hard and fast, or is there a range? Does that indentation interact weirdly with literal indentation? E.g., consider an example that included a Markdown nested list, or a block of code that includes indented constructs. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6245) Acceptance: fix zpool create zone test
Title: Message Title Stan Duffy commented on PUP-6245 Re: Acceptance: fix zpool create zone test Turns out that the pool that was attempting to be created (tstpool) did not exist and could not be created. Luckily, the pool 'rpool' does exist. I have confirmed this works on Solaris 11 (both x86 and SPARC). Validating on Solaris 10 SPARC and I will submit a PR. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6245) Acceptance: fix zpool create zone test
Title: Message Title Stan Duffy updated an issue Puppet / PUP-6245 Acceptance: fix zpool create zone test Change By: Stan Duffy Sprint: AP 2016-10-19 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-128) What's the deal with @example tags?
Title: Message Title William Hopper commented on PDOC-128 Re: What's the deal with @example tags? With what Peter Huene said above, my understanding is that there aren't any changes to make for this ticket on the strings side. Puppet core examples will need to be updated to use the proper syntax, though. It may make sense to add a bit more to the README about how to use @examples Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-5000) acceptance: test agent_specified environment, ENC, and related facts
Title: Message Title Sean Griffin updated an issue Puppet / PUP-5000 acceptance: test agent_specified environment, ENC, and related facts Change By: Sean Griffin Attachment: agent_specified_environment.rb I've attached a first cut at a test. Applies a manifest to set up the environment files, and calls puppet agent with an environment specified. [~erict] Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1744) User creation fails on OS X 10.9 if user is added to more than one group
Title: Message Title Maggie Dreyer updated an issue Puppet / PUP-1744 User creation fails on OS X 10.9 if user is added to more than one group Change By: Maggie Dreyer Release Notes: Bug Fix Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6376) Add `server_urls` option to puppet with agent failover logic
Title: Message Title Alan Schwarzenberger commented on PUP-6376 Re: Add `server_urls` option to puppet with agent failover logic Answering my own question ... server line is ignored if server_list is present ... see https://github.com/puppetlabs/puppet/blob/master/lib/puppet/defaults.rb#L1405-L1425 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6376) Add `server_urls` option to puppet with agent failover logic
Title: Message Title Alan Schwarzenberger commented on PUP-6376 Re: Add `server_urls` option to puppet with agent failover logic Please could someone explain, and hopefully add to documentation, what the precedence order of server_list and server lines in puppet.conf is? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-127) Hanging indent isn't stripped for resource feature descriptions
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-127 Hanging indent isn't stripped for resource feature descriptions Change By: William Hopper Release Notes Summary: This change ensures that puppet Type features have their docstrings scrubbed of extra whitespace and newlines. Release Notes: Bug Fix Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: William Hopper Release Notes Summary: Strings previously did not handle multiple, combined `defaultfor` statements in puppet providers. This fix updates the logic around storing these statements so that they can be displayed correctly. This change includes a breaking change to the JSON schema. Release Notes: Bug Fix Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6538) deprecate hiera_xxx functions (in favour of lookup)
Title: Message Title Nicholas Fagerlund commented on PUP-6538 Re: deprecate hiera_xxx functions (in favour of lookup) Linking to a ticket when a user needs docs — even a purpose-built ticket — is a poor UX. We really recommend linking to the relevant docs page about that family of deprecations. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title William Hopper assigned an issue to William Hopper Puppet Strings / PDOC-126 Ruby quoting constructs are incompletely stripped from some docstrings Change By: William Hopper Assignee: William Hopper Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1431) Pre/Post-run commands don't work under Windows
Title: Message Title Geoff Nichols assigned an issue to Eric Sorenson Puppet / PUP-1431 Pre/Post-run commands don't work under Windows Change By: Geoff Nichols Assignee: Eric Sorenson Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1431) Pre/Post-run commands don't work under Windows
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1431 Pre/Post-run commands don't work under Windows Change By: Geoff Nichols Story Points: 3 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1431) Pre/Post-run commands don't work under Windows
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1431 Pre/Post-run commands don't work under Windows Change By: Geoff Nichols Sprint: AP Grooming Top 10 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title Peter Huene commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings Yes on stripping %Q and %q (and the brackets). Yes on treating interpolated expressions as simply raw docstring text; I think it's a much better alternative than failing, although maybe generating a warning if the AST has an interpolation _expression_ in it would be ideal. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title William Hopper commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings So then it sounds like the plan of action for this ticket is to simply strip off %Q and %q from docstrings? And unless we can find a way to prevent those warnings, it's expected that docstrings that contain interpolated text will end up having the interpolation _expression_? Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1431) Pre/Post-run commands don't work under Windows
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1431 Pre/Post-run commands don't work under Windows Change By: Geoff Nichols Acceptance Criteria: - Run puppet-agent w/prerun command to run puppet.- Confirm that puppet ran successfully. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6775) acceptance: Newlines break Puppet tag validation
Title: Message Title William Hopper commented on PUP-6775 Re: acceptance: Newlines break Puppet tag validation Lots of confusing about this one with the integration / agent team. From hipchat: Branan: Looks like we got a failure - this may actually be a test that snuck in before the code for changes to how we handle tags - https://jenkins-enterprise.delivery.puppetlabs.net/view/pe-integration/view/pe-2016.4.x/job/enterprise_pe-acceptance-tests_integration-system_pe_smoke-monolithic_2016.4.x/35/LAYOUT=64mcd,LEGACY_AGENT_VERSION=NONE,PLATFORM=redhat6,SCM_BRANCH=2016.4.x,UPGRADE_FROM=NONE,label=beaker-integration-smoke/testReport/junit/(root)/acceptance_tests_puppetdb/puppetdb_storeconfigs_rb/ there's a real bug here, but I didn't think these code changes were expected in 1.7.1. [10:52 PM] Branan Riley: that code did land in Puppet Stable [10:53 PM] Branan Riley: but isn't in 1.7.1 because of it's limited scope [10:53 PM] Branan Riley: (this is a clear symptom of us not having simple lifetimes for Puppet commits into PE, and is a thing we should discuss at the next retro) [10:53 PM] Branan Riley: I think we need to revert that test, then can try again [10:54 PM] Branan Riley: I can get that PR up, since I'm the one around [10:54 PM] Branan Riley: but I need a merge in the next couple hours if we want nightlies to be clean [11:48 PM] Branan Riley: Quick TL;DR: Geoff and I reverted a test change on the belief that a Puppet change was not actually expected for Davis. Things are going green based on that revert. If the Puppet change was expected, we will need to bring the test back, and tag a new P-A that includes the Puppet changes [11:50 PM] Branan Riley: Obviously if other things go sideways, everyhing I just said is subject to nullification Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubs
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title Peter Huene commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings �� thanks for the tests, looks like the quoted heredoc is operating correctly with respect to the best puppet-strings can do. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Acceptance Criteria: - Verify exclusive open fails before applying the change.- Verify passes after change.- Double-check Forge for modules that make calls to filesystem methods and notify authors if they are using filesystem methods that will be not be backwards compatible with our changes. - Validate whether PUP-1583 is fixed by this. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1583) Non ASCII comments in puppet.conf causes exception
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1583 Non ASCII comments in puppet.conf causes exception Change By: Geoff Nichols Sprint: AP Grooming Top 10 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title William Hopper commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings Here are a few test cases and what we currently get: 1: string interpolation using %Q test = "hello world" desc %Q{This is a Q test to see what happens when we use interpolation: #{test}} bundle exec puppet strings generate test_provider.rb [warn]: In file `test_provider.rb':1: Cannot resolve link to This from text. "docstring": { "text": "%Q{This is a Q test to see what happens when\nwe use interpolation: #{test}}" },
Jira (PUP-1583) Non ASCII comments in puppet.conf causes exception
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1583 Non ASCII comments in puppet.conf causes exception Change By: Geoff Nichols Labels: needs_repro Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Sprint: AP Grooming Top 10 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6813) module face: `install` should report back on which dependencies were not satisfiable
Title: Message Title Trevor Vaughan created an issue Puppet / PUP-6813 module face: `install` should report back on which dependencies were not satisfiable Issue Type: Bug Assignee: Unassigned Components: PMT Created: 2016/10/12 10:22 AM Environment: Tested with puppet 4.7.0 Priority: Normal Reporter: Trevor Vaughan $ puppet module install --modulepath=/tmp/foo simp-simplib Notice: Preparing to install into /tmp/foo ...
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Story Points: 3 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Acceptance Criteria: - Verify exclusive open fails before applying the change. - Verify passes after change. - Double-check Forge for modules that make calls to filesystem methods and notify them if they are using filesystem methods that will be not be backwards compatible with our changes. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Acceptance Criteria: - Verify exclusive open fails before applying the change.- Verify passes after change.- Double-check Forge for modules that make calls to filesystem methods and notify them authors if they are using filesystem methods that will be not be backwards compatible with our changes. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6188) Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6188 Puppet::FileSystem.open / exclusive_open does not support passing an encoding like UTF-8 Change By: Geoff Nichols Acceptance Criteria: Verify exclusive open fails before applying the change.Verify passes after change. Double-check Forge for modules that make calls to filesystem methods and notify them if they are using filesystem methods that will be not be backwards compatible with our changes. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: William Hopper Acceptance Criteria: Strings should parse the following provider correctly (i.e, it should group the combined 'osfamily => redhat and operatingsystemmajrelease => 7 defaultfors together:{code}Puppet::Type.type(:database).provide :linux do confine 'operatingsystem' => 'fedora' defaultfor :osfamily => 'linux' defaultfor :osfamily => 'RedHat', :operatingsystemmajrelease => '7' commands :database => '/usr/bin/database' desc 'The database provider on Linux.' # ...end{code} JSON output should be:{code} "defaults": [[ ["osfamily","linux" ]],[ ["osfamily","RedHat" ], ["operatingsystemmajrelease","7" ]] ],{code} Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-1744) User creation fails on OS X 10.9 if user is added to more than one group
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-1744 User creation fails on OS X 10.9 if user is added to more than one group Change By: Geoff Nichols Fix Version/s: PUP 4.7.0 Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-124) JSON: Inconsistent naming of function parameters
Title: Message Title Peter Huene commented on PDOC-124 Re: JSON: Inconsistent naming of function parameters Taking PDOC-125 into account (i.e. the decision to not tie so closely to YARD with this format), I think we could do better here by having puppet-strings remove the * and set a "is_vararg" to true, or some such. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-125) JSON: Splitting function signatures into two places is awkward
Title: Message Title Peter Huene commented on PDOC-125 Re: JSON: Splitting function signatures into two places is awkward I'm completely fine with having a better structure that isn't tied closely to YARD, but I'd still argue that an overload's signature belongs with the overload's data (doc text, tags, etc.) because most of the time you want this displayed as a single entity in a list of overloads. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: William Hopper Acceptance Criteria: Strings should parse the following provider correctly (i.e, it should group the combined 'osfamily => redhat and operatingsystemmajrelease => 7 defaultfors together:{code}Puppet::Type.type(:database).provide :linux do confine 'osfamily' => 'linux' defaultfor :osfamily => 'linux' defaultfor :osfamily => 'RedHat', :operatingsystemmajrelease => '7' commands :database => '/usr/bin/database' desc 'The database provider on Linux.' # ...end{code} Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title William Hopper updated an issue Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: William Hopper Acceptance Criteria: Strings should parse the following provider correctly (i.e, it should group the combined 'osfamily => redhat and operatingsystemmajrelease => 7 defaultfors together:{code}Puppet::Type.type(:database).provide :linux do confine ' osfamily operatingsystem ' => ' linux fedora ' defaultfor :osfamily => 'linux' defaultfor :osfamily => 'RedHat', :operatingsystemmajrelease => '7' commands :database => '/usr/bin/database' desc 'The database provider on Linux.' # ...end{code} Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-126) Ruby quoting constructs are incompletely stripped from some docstrings
Title: Message Title Peter Huene commented on PDOC-126 Re: Ruby quoting constructs are incompletely stripped from some docstrings I believe it would be treated the same as a double quoted string with interpolations: namely the result should contain the interpolation _expression_ as text. We should test this, William Hopper. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-127) Hanging indent isn't stripped for resource feature descriptions
Title: Message Title William Hopper assigned an issue to qa Puppet Strings / PDOC-127 Hanging indent isn't stripped for resource feature descriptions Change By: William Hopper Status: Ready for CI Test Assignee: qa Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDOC-95) Strings doesn't handle multiple `defaultfor`s in providers correctly
Title: Message Title William Hopper assigned an issue to qa Puppet Strings / PDOC-95 Strings doesn't handle multiple `defaultfor`s in providers correctly Change By: William Hopper Status: Ready for CI Test Assignee: qa Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6812) Force --disable flag comment
Title: Message Title Rob Braden moved an issue Puppet / PUP-6812 Force --disable flag comment Change By: Rob Braden Workflow: Release Engineering Scrum Teams Workflow Key: PA PUP - 623 6812 Project: Puppet Agent Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PDB-3096) log time elapsed for command processing
Title: Message Title Wyatt Alt created an issue PuppetDB / PDB-3096 log time elapsed for command processing Issue Type: New Feature Assignee: Unassigned Created: 2016/10/12 9:35 AM Priority: Normal Reporter: Wyatt Alt This would allow you to tie an intermittent slow processing issue to specific nodes very easily. Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe)
Jira (PUP-6761) SPIKE - Find a workflow for POT file generation
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6761 SPIKE - Find a workflow for POT file generation Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6675) Puppet::Util::Execution.execute 'hostname' returns nothing as daemon
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6675 Puppet::Util::Execution.execute 'hostname' returns nothing as daemon Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (FACT-1356) External facts should be able to return structured data
Title: Message Title Geoff Nichols updated an issue Facter / FACT-1356 External facts should be able to return structured data Change By: Geoff Nichols Sprint: AP 2016-09-21, AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-5334) Puppet can't remove users from groups in OSX.
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-5334 Puppet can't remove users from groups in OSX. Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6364) On AIX, an already installed package is not updated when using "ensure => latest"
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6364 On AIX, an already installed package is not updated when using "ensure => latest" Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6762) SPIKE - How and when do we get PO files from Transifex?
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6762 SPIKE - How and when do we get PO files from Transifex? Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6708) Agent does not save local copy of last_run_report.yaml if submission to report server fails
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6708 Agent does not save local copy of last_run_report.yaml if submission to report server fails Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6552) Regression: Redhat / Debian / Ubuntu can't specify 'init' provider
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6552 Regression: Redhat / Debian / Ubuntu can't specify 'init' provider Change By: Geoff Nichols Sprint: Client 2016-09-07, AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6716) Error when purging local users on Windows
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6716 Error when purging local users on Windows Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-3631) NIM provider uses a regex that is too restrictive when parsing RPM release tags
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-3631 NIM provider uses a regex that is too restrictive when parsing RPM release tags Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6708) Agent does not save local copy of last_run_report.yaml if submission to report server fails
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6708 Agent does not save local copy of last_run_report.yaml if submission to report server fails Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (FACT-1356) External facts should be able to return structured data
Title: Message Title Geoff Nichols updated an issue Facter / FACT-1356 External facts should be able to return structured data Change By: Geoff Nichols Sprint: AP 2016-09-21, AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-3631) NIM provider uses a regex that is too restrictive when parsing RPM release tags
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-3631 NIM provider uses a regex that is too restrictive when parsing RPM release tags Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (FACT-1356) External facts should be able to return structured data
Title: Message Title Geoff Nichols updated an issue Facter / FACT-1356 External facts should be able to return structured data Change By: Geoff Nichols Sprint: AP 2016-09-21, AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6762) SPIKE - How and when do we get PO files from Transifex?
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6762 SPIKE - How and when do we get PO files from Transifex? Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.
Jira (PUP-6762) SPIKE - How and when do we get PO files from Transifex?
Title: Message Title Geoff Nichols updated an issue Puppet / PUP-6762 SPIKE - How and when do we get PO files from Transifex? Change By: Geoff Nichols Sprint: AP 2016-11-02 Holding Add Comment This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com. To post to this group, send email to puppet-bugs@googlegroups.com. Visit this group at https://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/d/optout.