| Server IP : 77.68.64.21 / Your IP : 216.73.217.59 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/provider/ |
Upload File : |
# This is the base class of all prefetched network device provider
class Puppet::Provider::NetworkDevice < Puppet::Provider
def self.device(url)
raise "This provider doesn't implement the necessary device method"
end
def self.lookup(device, name)
raise "This provider doesn't implement the necessary lookup method"
end
def self.prefetch(resources)
resources.each do |name, resource|
device = Puppet::Util::NetworkDevice.current || device(resource[:device_url])
if result = lookup(device, name)
result[:ensure] = :present
resource.provider = new(device, result)
else
resource.provider = new(device, :ensure => :absent)
end
end
end
def exists?
@property_hash[:ensure] != :absent
end
attr_accessor :device
def initialize(device, *args)
super(*args)
@device = device
# Make a duplicate, so that we have a copy for comparison
# at the end.
@properties = @property_hash.dup
end
def create
@property_hash[:ensure] = :present
self.class.resource_type.validproperties.each do |property|
if val = resource.should(property)
@property_hash[property] = val
end
end
end
def destroy
@property_hash[:ensure] = :absent
end
def flush
@property_hash.clear
end
def self.instances
end
def former_properties
@properties.dup
end
def properties
@property_hash.dup
end
end