aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-12-14 21:56:36 +0100
committerintrigeri <intrigeri@boum.org>2010-12-14 21:56:36 +0100
commit1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531 (patch)
tree925c7c1e8c2b614d7c82f0d1e4f2bab669a6c8d9 /manifests/init.pp
parent5846da98ce72e896bd263a67c9fd3d52dc16585b (diff)
downloadpuppet-apt-1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531.tar.gz
puppet-apt-1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531.tar.bz2
Make consistent the use of absolute path to apt-get.
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 7fa811d..8a4a0a5 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -170,7 +170,7 @@ class apt {
mode => 0755, owner => root, group => root,
}
exec { "custom_keys":
- command => "find ${apt_base_dir}/keys.d -type f -exec apt-key add '{}' \\; && apt-get update",
+ command => "find ${apt_base_dir}/keys.d -type f -exec apt-key add '{}' \\; && /usr/bin/apt-get update",
subscribe => File["${apt_base_dir}/keys.d"],
refreshonly => true,
}