Merge pull request #24 from haus/fix_source_key_tests
[puppet-modules/puppetlabs-apt.git] / manifests / builddep.pp
index 79b7e29e3ce9a55521017f84f6a8d49a649ad6e2..8aebc679aea3329223b293d41fe3654dff91c5ff 100644 (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}"],
   }
 }