(#8720) Replace Apt::Ppa with Apt::Builddep

Probably a copy & paste error

Reviewed-by: Matthaus Litteken <matthaus@puppetlabs.com>
Signed-off-by: Spencer Krum <spencer@puppetlabs.com>
This commit is contained in:
Spencer Krum 2011-08-02 15:08:39 -07:00
parent 5c05fa0f91
commit 52ca73e964

View file

@ -2,7 +2,7 @@
define apt::builddep() {
Class['apt'] -> Apt::Ppa[$title]
Class['apt'] -> Apt::Builddep[$name]
exec { "apt-update-${name}":
command => "/usr/bin/apt-get update",
@ -11,6 +11,6 @@ define apt::builddep() {
exec { "apt-builddep-${name}":
command => "/usr/bin/apt-get -y --force-yes build-dep $name",
notify => Exec["apt-update-${name}"],
notify => Exec["apt-update-${name}"],
}
}