Issue #22534 has been updated by Andrew Parker. Status changed from Unreviewed to Duplicate
---------------------------------------- Bug #22534: Dpkg warnings https://projects.puppetlabs.com/issues/22534#change-97482 * Author: Martijn Grendelman * Status: Duplicate * Priority: Normal * Assignee: * Category: * Target version: * Affected Puppet version: 3.3.0 * Keywords: * Branch: ---------------------------------------- I have a fact that retrieves some information about packages on a Debian system with this code (mainly for inventory purposes): pkg = Puppet::Type.type(:package).new(:name => '...') v = pkg.retrieve[pkg.property(:ensure)].to_s Since 3.3.0, this produces warnings for packages that are not installed, for example: Warning: Failed to match dpkg-query line "dpkg-query: no packages found matching php5-common\n" I see that this warning has been added to provider/package/dpkg.rb, in the 'parse_line' method: else Puppet.warning "Failed to match dpkg-query line #{line.inspect}" return nil My feeling is, that warning level is way too severe for this type of message. It causes big fat red lines when I trigger a manual agent run. I think 'debug' would be a more suitable level. Unless I'm doing things I shouldn't be doing... -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/groups/opt_out.
