440245d40d
This is to improve speed on Facter resolution of service_provider fact that was just introduced in PR# 506. The improvements go from 280ms resolution time approx. down to 2ms resolution time approx. by adding requires statements.
17 lines
403 B
Ruby
17 lines
403 B
Ruby
# Fact: service_provider
|
|
#
|
|
# Purpose: Returns the default provider Puppet will choose to manage services
|
|
# on this system
|
|
#
|
|
# Resolution: Instantiates a dummy service resource and return the provider
|
|
#
|
|
# Caveats:
|
|
#
|
|
require 'puppet/type'
|
|
require 'puppet/type/service'
|
|
|
|
Facter.add(:service_provider) do
|
|
setcode do
|
|
Puppet::Type.type(:service).newservice(:name => 'dummy')[:provider].to_s
|
|
end
|
|
end
|