Sha256: 0011bc2c573d98f6c78bcfb14c38da525521530c08897f42aac835e14d81b396
Contents?: true
Size: 619 Bytes
Versions: 65
Compression:
Stored size: 619 Bytes
Contents
require 'puppet/provider/package' Puppet::Type.type(:package).provide :puppet_gem, :parent => :gem do desc "Puppet Ruby Gem support. This provider is useful for managing gems needed by the ruby provided in the puppet-agent package." has_feature :versionable, :install_options, :uninstall_options if Puppet::Util::Platform.windows? # On windows, we put our ruby ahead of anything that already # existed on the system PATH. This means that we do not need to # sort out the absolute path. commands :gemcmd => "gem" else commands :gemcmd => "/opt/puppetlabs/puppet/bin/gem" end end
Version data entries
65 entries across 65 versions & 2 rubygems