module-puppetlabs-apt/manifests/builddep.pp

13 lines
245 B
ObjectPascal
Raw Normal View History

2011-07-25 00:12:25 +02:00
# builddep.pp
define apt::builddep() {
include apt::update
2011-07-25 00:12:25 +02:00
Class['apt'] -> Apt::Builddep[$name]
2011-07-25 00:12:25 +02:00
exec { "apt-builddep-${name}":
command => "/usr/bin/apt-get -y --force-yes build-dep ${name}",
notify => Exec["apt update"],
2011-07-25 00:12:25 +02:00
}
}