Add virtual_packages support to norpm provider
authorAlex Schultz <aschultz@redhat.com>
Thu, 16 Feb 2017 16:53:55 +0000 (09:53 -0700)
committerEmilien Macchi <emilien@redhat.com>
Fri, 17 Feb 2017 00:49:21 +0000 (00:49 +0000)
The norpm provider is supposed to noop package installs/updates but if a
package name in puppet does not match the installed package, it is being
reported as not installed.  The provider then 'installs' it every time
which can trigger unwanted service restarts.

Change-Id: Icdfa6567168f9ecc555489ed67405f98544bd910
Closes-Bug: #1665405

lib/puppet/provider/package/norpm.rb

index 0764265..080b138 100644 (file)
@@ -17,6 +17,8 @@ require 'puppet/provider/package'
 Puppet::Type.type(:package).provide :norpm, :source => :rpm, :parent => :rpm do
   desc "RPM packaging provider that does not install anything."
 
+  has_feature :virtual_packages
+
   def latest
     @resource.fail "'latest' is unsupported by this provider."
   end