module-puppetlabs-apt/manifests/builddep.pp

17 lines
338 B
ObjectPascal
Raw Normal View History

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