1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
Puppet::Type.type(:package).provide :aptrpm, :parent => :rpm, :source => :rpm do
# Provide sorting functionality
include Puppet::Util::Package
desc "Package management via `apt-get` ported to `rpm`."
has_feature :versionable
commands :aptget => "apt-get"
commands :aptcache => "apt-cache"
commands :rpm => "rpm"
if command('rpm')
confine :true => begin
rpm('-ql', 'rpm')
rescue Puppet::ExecutionFailure
false
else
true
end
end
# Install a package using 'apt-get'. This function needs to support
# installing a specific version.
def install
should = @resource.should(:ensure)
str = @resource[:name]
case should
when true, false, Symbol
# pass
else
# Add the package version
str += "=#{should}"
end
cmd = %w{-q -y}
cmd << 'install' << str
aptget(*cmd)
end
# What's the latest package version available?
def latest
output = aptcache :showpkg, @resource[:name]
if output =~ /Versions:\s*\n((\n|.)+)^$/
versions = $1
available_versions = versions.split(/\n/).collect { |version|
if version =~ /^([^\(]+)\(/
$1
else
self.warning _("Could not match version '%{version}'") % { version: version }
nil
end
}.reject { |vers| vers.nil? }.sort { |a,b|
versioncmp(a,b)
}
if available_versions.length == 0
self.debug "No latest version"
print output if Puppet[:debug]
end
# Get the latest and greatest version number
return available_versions.pop
else
self.err _("Could not match string")
end
end
def update
self.install
end
def uninstall
aptget "-y", "-q", 'remove', @resource[:name]
end
def purge
aptget '-y', '-q', 'remove', '--purge', @resource[:name]
end
end
|