From: Antoine Beaupré Date: Thu, 27 Aug 2015 03:27:58 +0000 (-0400) Subject: fix install location of apt::key::plain X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5564b3fba3d8aebdc3cbcd7441e9c7a216243f46;p=puppet-apt.git fix install location of apt::key::plain --- diff --git a/manifests/key/plain.pp b/manifests/key/plain.pp index a84e6dd..a24a51b 100644 --- a/manifests/key/plain.pp +++ b/manifests/key/plain.pp @@ -1,12 +1,12 @@ define apt::key::plain ($source) { file { - "${apt::apt_base_dir}/${name}": + "${apt::apt_base_dir}/keys/${name}": source => $source; "${apt::apt_base_dir}/keys": ensure => directory; } - exec { "apt-key add ${apt::apt_base_dir}/${name}": - subscribe => File["${apt::apt_base_dir}/${name}"], + exec { "apt-key add ${apt::apt_base_dir}/keys/${name}": + subscribe => File["${apt::apt_base_dir}/keys/${name}"], refreshonly => true, notify => Exec['refresh_apt'], }