Add logoutput on_failure for all exec resources.
[puppet-modules/puppetlabs-apt.git] / manifests / builddep.pp
index 8891bd903b6095e7bae872904bd3bfb9fe473f82..3294f713391c79d6f07e400c690f15d00c4dc611 100644 (file)
@@ -1,16 +1,16 @@
 # builddep.pp
 
 define apt::builddep() {
+  include apt::update
 
-  Class['apt'] -> Apt::Builddep[$name]
-
-  exec { "apt-update-${name}":
-    command     => '/usr/bin/apt-get update',
-    refreshonly => true,
+  exec { "apt-builddep-${name}":
+    command   => "/usr/bin/apt-get -y --force-yes build-dep ${name}",
+    logoutput => 'on_failure',
+    notify    => Exec['apt_update'],
   }
 
-  exec { "apt-builddep-${name}":
-    command     => "/usr/bin/apt-get -y --force-yes build-dep $name",
-    notify      => Exec["apt-update-${name}"],
+  # Need anchor to provide containment for dependencies.
+  anchor { "apt::builddep::${name}":
+    require => Class['apt::update'],
   }
 }