77d2b0dd05
of 2 space indentation.
16 lines
343 B
Puppet
16 lines
343 B
Puppet
# force.pp
|
|
# force a package from a specific release
|
|
|
|
define apt::force(
|
|
$release = 'testing',
|
|
$version = false
|
|
) {
|
|
|
|
exec { "/usr/bin/aptitude -y -t ${release} install ${name}":
|
|
unless => $version ? {
|
|
false => "/usr/bin/dpkg -l | grep ${name}",
|
|
default => "/usr/bin/dpkg -l | grep ${name} | grep ${version}"
|
|
}
|
|
}
|
|
|
|
}
|