From: intrigeri Date: Tue, 14 Dec 2010 20:56:36 +0000 (+0100) Subject: Make consistent the use of absolute path to apt-get. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531;p=puppet-apt.git Make consistent the use of absolute path to apt-get. --- 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, }