diff options
author | intrigeri <intrigeri@boum.org> | 2010-12-14 21:56:36 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-12-14 21:56:36 +0100 |
commit | 1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531 (patch) | |
tree | 925c7c1e8c2b614d7c82f0d1e4f2bab669a6c8d9 | |
parent | 5846da98ce72e896bd263a67c9fd3d52dc16585b (diff) | |
download | puppet-apt-1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531.tar.gz puppet-apt-1ae3fdfeb5308ed3abe8a2ad73820fcb10bab531.tar.bz2 |
Make consistent the use of absolute path to apt-get.
-rw-r--r-- | manifests/init.pp | 2 |
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, } |